@@ -39,18 +39,17 @@ mobile app (some day). **Feature [suggestions](https://ant.sr/contact) are welco
...
@@ -39,18 +39,17 @@ mobile app (some day). **Feature [suggestions](https://ant.sr/contact) are welco
You should now be able to access the instance on port 5000.
You should now be able to access the instance on port 5000.
## Production
## Production
To run BusMap in production you need an application server. I use uWSGI in emperor mode. On Debian, this means that per-application uWSGI configs belong in `/etc/uwsgi/apps-enabled/appname.ini`
To run BusMap in production you need an application server. I use uWSGI. On Debian, this means that uWSGI configs belong in `/etc/uwsgi/apps-enabled/appname.ini`
Here's a sample uWSGI config for this application:
Here's a sample uWSGI config for this application:
[uwsgi]
[uwsgi]
plugins = python
plugins = python34
module = app
module = app:app
callable = app
# Paths
# Paths
base = /var/www/pybusmap
base = /var/www/pybusmap
home = %(base)/venv
home = %(base)/venv
chdir = /var/www/pybusmap
chdir = %(base)
pythonpath = %(base)
pythonpath = %(base)
socket = %(base)/uwsgi.sock
socket = %(base)/uwsgi.sock
...
@@ -59,9 +58,8 @@ Here's a sample uWSGI config for this application:
...
@@ -59,9 +58,8 @@ Here's a sample uWSGI config for this application:
gid = www-data
gid = www-data
# Worker behavior
# Worker behavior
die-on-term = true
vacuum = true
vacuum = true
smart-attach-daemon = /tmp/pybusmap-celery.pid %(home)/bin/celery -A celerytasks.celery worker --beat --pidfile=/tmp/pybusmap-celery.pid --logfile=%(base)/log/celery/%n.log
attach-daemon = %(home)/bin/celery -A celerytasks.celery worker -B --logfile=%(base)/log/celery/beat-%n.log
## License
## License
PyBusMap is MIT-licensed. Please use/fork/share it. Contributions are welcome.
PyBusMap is MIT-licensed. Please use/fork/share it. Contributions are welcome.