source: OpenWorkouts-current/.gitignore @ 8ee2af5

current
Last change on this file since 8ee2af5 was 8ee2af5, checked in by Borja Lopez <borja@…>, 5 years ago

Added the scripts and config files to run uwsgi instead of pserve
for development.

This fixes a problem that caused pserve to hang up forever when
several ajax requests were sent to generate screenshots of workout
maps (pserve does not handle concurrent requests very well).

After pulled this change, you can start the app manually using the
uwsgi_start helper::

./bin/uwsgi_start development

Or just use the ./bin/start script, which takes care also of starting
ZEO and several other steps.

  • Property mode set to 100644
File size: 1005 bytes
Line 
1# Byte-compiled / optimized / DLL files
2__pycache__/
3*.py[cod]
4*$py.class
5
6# Distribution / packaging
7.Python
8*.egg-info/
9.installed.cfg
10*.egg
11MANIFEST
12
13# Unit test / coverage reports
14htmlcov/
15.tox/
16.nox/
17.coverage
18.coverage.*
19.cache
20nosetests.xml
21coverage.xml
22*.cover
23.hypothesis/
24.pytest_cache/
25
26# Translations
27#*.mo
28#*.pot
29*.po~
30
31# Environments
32.env
33.venv
34env/
35venv/
36
37# ZODB databases
38var/db/Data.*
39var/db/blobs
40var/zeo/Data.*
41var/zeo/zeo.log
42var/zeo/zeo.sock
43var/zeo/zeo.pid
44var/zeo/blobs
45
46# mail queue
47var/spool
48var/run/mail-queue-processor.lock
49
50# log files
51var/log/openworkouts.log
52var/log/queueprocessor.log
53var/log/install.log.stderr
54var/log/install.log.stdout
55var/log/pserve.err
56var/log/pserve.log
57var/log/zeo_start.err
58var/log/zeo_start.log
59var/log/zeo_stop.err
60var/log/zeo_stop.log
61var/log/uwsgi/uwsgi.log
62
63# pid files
64var/run/pserve.pid
65var/run/uwsgi.pid
66
67# temp files
68var/tmp/chameleon/*
69var/tmp/egg_cache/*
70
71# JS static external components and libraries
72ow/static/components
73ow/static/maps
Note: See TracBrowser for help on using the repository browser.