source: OpenWorkouts-current/.gitignore @ b5d87e0

currentfeature/docs
Last change on this file since b5d87e0 was b5d87e0, checked in by Borja Lopez <borja@…>, 5 years ago

(#29) Added a tasks module, implemented a task to run the mail queue processor,
sending any automatically generated emails in the queue.

Tasks can be run manually, with the virtual env active:

python ow/tasks/run.py development.ini TASK_NAME

(where TASK_NAME is the name of a task, like send_emails)

Running the run.py script without parameters gives an usage-like message
with instructions on how to properly call the script.

  • Property mode set to 100644
File size: 691 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
30# Environments
31.env
32.venv
33env/
34venv/
35
36# ZODB databases
37var/db/Data.*
38var/db/blobs
39var/zeo/Data.*
40var/zeo/zeo.log
41var/zeo/zeo.sock
42var/zeo/zeo.pid
43var/zeo/blobs
44
45# mail queue
46var/spool
47var/run/mail-queue-processor.lock
48
49# log files
50var/log/openworkouts.log
51var/log/queueprocessor.log
52
53# JS static external components and libraries
54ow/static/components
55ow/static/maps
Note: See TracBrowser for help on using the repository browser.