source: OpenWorkouts-current/.gitignore

current
Last change on this file was 715671f, checked in by Borja Lopez <borja@…>, 5 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
RevLine 
[7388b68]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
[a4e4799]27#*.mo
28#*.pot
[aad4954]29*.po~
[7388b68]30
31# Environments
32.env
33.venv
[35953eb]34env
35venv
[7388b68]36
37# ZODB databases
38var/db/Data.*
39var/db/blobs
40var/zeo/Data.*
[82a4c44]41var/zeo/zeo.log
42var/zeo/zeo.sock
43var/zeo/zeo.pid
44var/zeo/blobs
[7388b68]45
[c612889]46# mail queue
47var/spool
[b5d87e0]48var/run/mail-queue-processor.lock
[715671f]49var/run/workout-bulk-loading.lock
[b5d87e0]50
51# log files
52var/log/openworkouts.log
53var/log/queueprocessor.log
[75383e6]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
[8ee2af5]62var/log/uwsgi/uwsgi.log
63
64# pid files
[75383e6]65var/run/pserve.pid
[8ee2af5]66var/run/uwsgi.pid
67
68# temp files
69var/tmp/chameleon/*
70var/tmp/egg_cache/*
[c612889]71
[7388b68]72# JS static external components and libraries
[3e48af6]73ow/static/components
[82a4c44]74ow/static/maps
Note: See TracBrowser for help on using the repository browser.