-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from ISPP-G5/develop
S3
- Loading branch information
Showing
63 changed files
with
6,678 additions
and
478 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# .gcloudignore | ||
|
||
.gcloudignore | ||
|
||
# Ignore local .env file | ||
.env | ||
|
||
# If you would like to upload your .git directory, .gitignore file, or files | ||
# from your .gitignore file, remove the corresponding line | ||
# below: | ||
.git | ||
.gitignore | ||
.github | ||
info.yml | ||
README.md | ||
|
||
# Python pycache: | ||
__pycache__/ | ||
|
||
# Ignore collected static and media files | ||
mediafiles/ | ||
staticfiles/ | ||
|
||
# Ignore the local DB | ||
db.sqlite3 | ||
|
||
# Ignored by the build system | ||
/setup.cfg | ||
venv/ | ||
|
||
# Ignore IDE files | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
runtime: python311 | ||
env: standard | ||
entrypoint: gunicorn -b :$PORT src.wsgi:application | ||
|
||
handlers: | ||
- url: /static | ||
static_dir: staticfiles/ | ||
- url: /media | ||
static_dir: mediafiles/ | ||
- url: /.* | ||
script: auto | ||
secure: always | ||
|
||
runtime_config: | ||
python_version: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.