Deployment to Staging #18

Merged
tobru merged 5 commits from deployment-to-test into main 2025-03-21 13:27:00 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit fb66d5666c - Show all commits

View file

@ -34,7 +34,7 @@ RUN uv sync --frozen \
&& mkdir -p /app/config/caddy /app/run/caddy /app/run/gunicorn \
&& chgrp -R 0 /app \
&& chmod -R g=u /app \
&& chmod g+w /app/config/caddy/Caddyfile
# && SECRET_KEY= uv run src/manage.py collectstatic --noinput
&& chmod g+w /app/config/caddy/Caddyfile \
&& SECRET_KEY= uv run src/manage.py collectstatic --noinput
CMD ["/usr/local/bin/run.sh"]

View file

@ -29,7 +29,7 @@
# Handle static files
handle /static/* {
uri strip_prefix /static
root * /app/staticfiles
root * /app/src/static.dist
file_server
}