Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.0
- uses: actions/checkout@v6.0.1
- uses: actions/setup-python@v6.1.0
- uses: pre-commit/action@v3.0.1
2 changes: 2 additions & 0 deletions application/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ This is where you'll find the Flask codebase.
* [templates](templates) - Holds the template HTML page files
* [__init__.py](__init__.py]) - The entrypoint into our app module. It's the first
thing that's loaded in the module.
* [course_list.py](course_list.py) - A list of dictionaries containing course data, used to seed the database.
* [forms.py](forms.py) - Where the WTForms classes are defined for handling user input and validation.
* [models.py](models.py) - Where the models are defined. This is the link between
MongoDB documents in a collection and Python objects of a class.
* [routes.py](routes.py) - Where the path routes are defined.
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
- mongodb

mongodb:
image: mongo:8.2.2
image: mongo:8.2
container_name: mongodb
environment:
- PUID=1000
Expand All @@ -26,7 +26,7 @@ services:
restart: unless-stopped

mongo-seed:
image: mongo:8.2.2
image: mongo:8.2
container_name: mongo-setup
links:
- mongodb
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ itsdangerous==2.2.0
Jinja2==3.1.6
MarkupSafe==3.0.3
mongoengine==0.29.1
pre-commit==4.5.0
pre-commit==4.5.1
pymongo>=4.0
python-dotenv==1.2.1
Werkzeug==3.1.4
Expand Down
Loading