Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.4.0 #488

Draft
wants to merge 38 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
54b434b
Add instructions field to quizzes
lvSojen Apr 11, 2023
dd02ef2
update
lvSojen Apr 11, 2023
1f3b5c1
update
lvSojen Apr 11, 2023
30ac2d9
now the Query.quiz() all passes
lvSojen Apr 11, 2023
ea1fd6c
fix(social): Creates social modal on register for user
chef-danny-d Apr 12, 2023
c151c5c
fix(social): Added error return to login mutation
chef-danny-d Apr 12, 2023
3f1d72e
feat(app): Added query to get the API Version number
chef-danny-d Apr 12, 2023
938b170
chore: Bumped version number
chef-danny-d Apr 12, 2023
ce914c6
feat(app): Added resolver to list of providers
chef-danny-d Apr 12, 2023
5e16d60
feat(lesson): Updated schemas with removed transcript field
chef-danny-d Apr 12, 2023
e247e3f
fix(lesson): Updated queries and mutations to match new schema
chef-danny-d Apr 12, 2023
a52fea9
fix(course): Added required and Carnegie hours fields to schema
chef-danny-d Apr 12, 2023
5c02ba4
fix(course): Updated queries and mutations to match new schema
chef-danny-d Apr 12, 2023
d81faec
added type text to the content type
Drama001 Apr 12, 2023
148b842
Merge pull request #482 from odu-emse/ALMP-748
frontoge Apr 12, 2023
22400eb
Merge pull request #483 from odu-emse/ALMP-735
frontoge Apr 12, 2023
5ef48e4
Merge pull request #484 from odu-emse/ALMP-758
frontoge Apr 12, 2023
a005472
Merge pull request #485 from odu-emse/ALMP-766
frontoge Apr 12, 2023
207f04b
Merge pull request #486 from odu-emse/ALMP-752
frontoge Apr 12, 2023
add76ae
Add carnegie hours to modules
Apr 12, 2023
e9d509c
update quiz now includes instructions field
lvSojen Apr 13, 2023
bccc80a
Merge branch 'dev' into ALMP-764
lvSojen Apr 13, 2023
4f0cb4d
Merge pull request #490 from odu-emse/ALMP-764
frontoge Apr 13, 2023
3be2e65
Add Learning objectives to modules (lessons) (#489)
frontoge Apr 13, 2023
f66763d
feat(instructor): Modified properties from string to list of strings …
chef-danny-d Apr 18, 2023
0104acf
feat(instructor): Deprecated unused fields in instructor profile mode…
chef-danny-d Apr 18, 2023
16d223c
Rename Modules to Sections (#496)
frontoge Apr 24, 2023
0c953c2
Refactor Lessons to Modules
Apr 24, 2023
d93abf0
feat(LP): created base schema and model structure (#493)
chef-danny-d May 1, 2023
f598933
refactor(modules): added return type to resolver
chef-danny-d May 1, 2023
ba935e4
Fixed addCourse mutation property not saving to DB (#498)
kenny-dd May 3, 2023
6f1d4be
refactor(lp): Update schema to not have name and enrollmentID (#500)
chef-danny-d May 3, 2023
638dd01
feat(quiz): instances can have many attempts
chef-danny-d May 3, 2023
c7248d5
fix(course): Fixed service connecting sections on create
chef-danny-d May 3, 2023
2c3d183
fix(dm): Remove Redis dependency from module and configured DM servic…
chef-danny-d May 19, 2023
062813a
fix(lp): adjusted filtering method to remove empty objects
chef-danny-d May 24, 2023
fb936a5
fix(flow): reworked previous module logic
chef-danny-d May 24, 2023
f125937
fix(flow): value being returned was incorrect
chef-danny-d May 24, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ rules: {
no-var: warn,
prefer-const: warn,
no-mixed-spaces-and-tabs: [warn, smart-tabs],
"@typescript-eslint/no-inferrable-types": off,
}
56 changes: 3 additions & 53 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ version: "3.9"

services:
api:
depends_on:
- mongo
container_name: back_end_api
restart: always
restart: on-failure
image: node:latest
working_dir: /usr/src/app
env_file:
Expand All @@ -18,8 +16,7 @@ services:
- apiNetwork
command: yarn dev
studio:
depends_on:
- mongo
restart: always
container_name: back_end_studio
image: node:latest
working_dir: /usr/src/app
Expand All @@ -32,53 +29,6 @@ services:
networks:
- apiNetwork
command: bash -c "yarn db:studio --browser false"
redis:
container_name: back_end_redis
image: redis
ports:
- "6379:6379"
networks:
- apiNetwork
redis-insight:
container_name: back_end_redis_insight
image: redislabs/redisinsight:latest
volumes:
- redisinsight:/db
ports:
- "8001:8001"
networks:
- apiNetwork
mongo:
container_name: back_end_db
restart: always
image: mongo:latest
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
expose:
- "27017"
ports:
- "27017:27017"
networks:
- apiNetwork
mongo-express:
depends_on:
- mongo
container_name: back_end_db_express
restart: always
image: mongo-express:latest
environment:
ME_CONFIG_MONGODB_SERVER: back_end_db
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ports:
- "8081:8081"
networks:
- apiNetwork
command: mongo-express
networks:
apiNetwork:
driver: bridge

volumes:
redisinsight:
driver: bridge
Loading