-
Notifications
You must be signed in to change notification settings - Fork 1
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 #402 from sparcs-kaist/develop
Upgrade major version to 3
- Loading branch information
Showing
96 changed files
with
3,016 additions
and
4,066 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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[program:gunicorn] | ||
command=/newara/www/venv/bin/gunicorn -b 0.0.0.0:9000 -w 3 --timeout 120 ara.wsgi:application | ||
command=gunicorn -b 0.0.0.0:9000 -w 3 --timeout 120 ara.wsgi:application | ||
stdout_logfile=/dev/stdout | ||
stdout_logfile_maxbytes=0 | ||
stderr_logfile=/dev/stderr | ||
stderr_logfile_maxbytes=0 | ||
|
||
[program:celery-beat] | ||
command=/newara/www/venv/bin/celery -A ara beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler | ||
command=celery -A ara beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler | ||
directory=/newara/www | ||
stdout_logfile=/var/log/newara/celery-beat.log | ||
stderr_logfile=/var/log/newara/celery-beat.log |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[program:celery-worker] | ||
command = /newara/www/venv/bin/celery -A ara worker -l info | ||
command=celery -A ara worker -l info | ||
directory=/newara/www | ||
stdout_logfile=/var/log/newara/celery-worker.log | ||
stderr_logfile=/var/log/newara/celery-worker.log |
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 |
---|---|---|
@@ -1,19 +1,14 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Set default charset | ||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[.env] | ||
insert_final_newline = false | ||
|
||
# 4 space indentation | ||
[*.py] | ||
indent_size = 4 | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[.env] | ||
insert_final_newline = false |
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
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
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,50 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
django = "~=4.2" | ||
djangorestframework = "~=3.14" | ||
python-dotenv = "*" | ||
awscli = "*" | ||
gunicorn = "*" | ||
celery = "*" | ||
django-environ = "*" | ||
firebase-admin = "*" | ||
sentry-sdk = "*" | ||
redis = "*" | ||
django-filter = "*" | ||
django-extensions = "*" | ||
django-s3-storage = "*" | ||
django-celery-beat = "*" | ||
django-celery-results = "*" | ||
drf-spectacular = "*" | ||
django-cacheops = "*" | ||
django-elasticsearch-dsl = "~=7.3" | ||
mysqlclient = "*" | ||
beautifulsoup4 = "*" | ||
bleach = "*" | ||
django-redis = "*" | ||
pillow = "*" | ||
html5lib = "*" | ||
pytest = "*" | ||
pytest-django = "*" | ||
django-cors-headers = "*" | ||
django-debug-toolbar = "*" | ||
django-debug-toolbar-force = "*" | ||
pyyaml = "~=5.3.1" | ||
uritemplate = "*" | ||
tqdm = "*" | ||
lxml = "*" | ||
django-ses = "*" | ||
|
||
[dev-packages] | ||
black = "*" | ||
isort = "*" | ||
pre-commit = "*" | ||
ipython = "*" | ||
pytest-cov = "*" | ||
|
||
[requires] | ||
python_version = "3.11" |
Oops, something went wrong.