source: OpenWorkouts-current/.gitignore

current
Last change on this file was 715671f, checked in by Borja Lopez <borja@…>, 4 years ago

(#77) Bulk workouts upload:

  • Added methods to extract files from compressed bulk files, then load workouts from those files.
  • Added a task to process/load workouts from "not loaded" bulk files
  • Added full tests coverage
  • Property mode set to 100644
File size: 1.0 KB
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
49var/run/workout-bulk-loading.lock
50
51# log files
52var/log/openworkouts.log
53var/log/queueprocessor.log
54var/log/install.log.stderr
55var/log/install.log.stdout
56var/log/pserve.err
57var/log/pserve.log
58var/log/zeo_start.err
59var/log/zeo_start.log
60var/log/zeo_stop.err
61var/log/zeo_stop.log
62var/log/uwsgi/uwsgi.log
63
64# pid files
65var/run/pserve.pid
66var/run/uwsgi.pid
67
68# temp files
69var/tmp/chameleon/*
70var/tmp/egg_cache/*
71
72# JS static external components and libraries
73ow/static/components
74ow/static/maps
Note: See TracBrowser for help on using the repository browser.