Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#!/bin/sh
cd /city_traffic
python manage.py collectstatic --noinput
python manage.py wait_for_db
python manage.py migrate
gunicorn \
--bind 0.0.0.0:8000 \
--access-logfile /var/log/nginx/access.log \
--error-logfile /var/log/nginx/error.log \
city_traffic.wsgi:application