Skip to content
Snippets Groups Projects
Commit 7c8070b8 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Corrections to readme

parent ca6ffe85
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ mobile app (some day). **Feature [suggestions](https://ant.sr/contact) are welco ...@@ -17,7 +17,7 @@ mobile app (some day). **Feature [suggestions](https://ant.sr/contact) are welco
## Setup for Development ## Setup for Development
- Install system-wide dependencies - Install system-wide dependencies
`sudo apt-get install python python-pip python-virtualenv libxml2-dev libxsl-dev` `sudo apt-get install python python-pip python-virtualenv redis-server libpq-dev libxml2-dev libxslt1-dev`
- Create and/or activate your virtualenv - Create and/or activate your virtualenv
Create: `virtualenv venv` Create: `virtualenv venv`
Activate: `. venv/bin/activate` Activate: `. venv/bin/activate`
...@@ -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.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment