We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd03916 commit c5d9ce1Copy full SHA for c5d9ce1
{{cookiecutter.project_slug}}/entrypoint.sh
@@ -3,10 +3,8 @@ set -eox pipefail
3
4
if [ "$ENV" != 'production' ]; then
5
exec hypercorn --reload --worker-class={{cookiecutter.worker_class}} --bind=0.0.0.0:5000 \
6
- --error-logfile=- --root-path /api \
7
- {{cookiecutter.project_slug}}.main:app
+ --error-logfile=- {{cookiecutter.project_slug}}.main:app
8
else
9
exec hypercorn --worker-class={{cookiecutter.worker_class}} --bind=0.0.0.0:5000 --error-logfile=- \
10
11
12
fi
0 commit comments