-
Notifications
You must be signed in to change notification settings - Fork 0
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
changes server and worker #80
Changes from 40 commits
63d84a0
204ad4f
e100dd2
f890047
37e4733
2630edb
9d48fcc
8bcecb9
cda1315
b3a90e5
0a5ef7c
9726f9d
77576ad
c1f61c8
75e784c
cfbf9f7
7bb0979
d2fb665
397164f
f206fad
375cd23
d857289
eae7999
e23dcad
6c2d75b
3e43510
6de2522
d79e553
769a75d
146fa37
e47cc7f
0ecd970
ed3bd01
b0f1533
0974900
dd2e9f8
df24bfb
f1b0cf9
337a386
622f64d
7ce28ab
34dac4f
3b3814b
9621d44
00d1369
2b7dec7
10e08d3
1eb0355
d565495
50d95e8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--- | ||
|
||
name: Production CI/CD Pipeline | ||
|
||
on: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--- | ||
|
||
name: Staging CI/CD Pipeline | ||
|
||
on: pull_request | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ coverage.xml | |
.hypothesis/ | ||
.pytest_cache/ | ||
cover/ | ||
coverage/ | ||
|
||
# Translations | ||
*.mo | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[settings] | ||
check = false | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
rules: | ||
brackets: | ||
forbid: false | ||
min-spaces-inside: 1 | ||
max-spaces-inside: 1 | ||
min-spaces-inside-empty: -1 | ||
max-spaces-inside-empty: -1 |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -9,4 +9,4 @@ RUN chmod +x docker-entrypoint.sh | |||||
CMD ["./docker-entrypoint.sh"] | ||||||
|
||||||
FROM base AS prod | ||||||
CMD ["python3", "-m", "celery", "-A", "celery_app.server", "worker", "-l", "INFO"] | ||||||
CMD ["celery", "-A", "worker", "worker", "-l", "INFO"] | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update to CMD instruction needs correction. The CMD instruction has been updated to - CMD ["celery", "-A", "worker", "worker", "-l", "INFO"]
+ CMD ["celery", "-A", "tasks", "worker", "-l", "INFO"] Committable suggestion
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did we disable
isort
linter?