-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
49 lines (33 loc) · 789 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# ignore byte compiled files created by Python
__pycache__/
# ignore vscode folder
.vscode/
# ignore the virtual environment
env/
# ignore the build folder produced after running setup.py
build/
# ignore the dist folder produced after running setup.py
dist/
# ignore the django mysite project used to test this package
mysite/
# ignore the frontend django app
frontend/
django_webpack_dev_server.egg-info/
# ignore the html files of the coverage
htmlcov/
# ignore the coverage.xml file
coverage.xml
# ignore the todo text file
Todo.txt
# ignore the sqlite file
db.sqlite3
# ignore the .pytest_cache folder
.pytest_cache/
# ignore the .tox folder
.tox/
# ignore the environment variables file
.env
# ignore the .coverage file
.coverage
# ignore the manage.py file
manage.py