Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6c44f61

Browse files
committedNov 3, 2022
Add project implementation
1 parent e5e16db commit 6c44f61

35 files changed

+1424
-3
lines changed
 

‎.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
venv
2+
logs
3+
Makefile
4+
!.gitignore
5+
!.dockerignore

‎.env.sample

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# режим отладки
2+
DEBUG=True
3+
4+
# базовый адрес приложения
5+
BASE_URL=http://0.0.0.0:8000
6+
7+
# версия релиза проекта
8+
PROJECT__RELEASE_VERSION=0.1.0

‎.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
__pycache__/
33
*.py[cod]
44
*$py.class
5+
*.pyc
56

67
# C extensions
78
*.so
@@ -69,7 +70,8 @@ instance/
6970
.scrapy
7071

7172
# Sphinx documentation
72-
docs/_build/
73+
docs/build/
74+
docs/source/_autosummary/
7375

7476
# PyBuilder
7577
target/
@@ -127,3 +129,7 @@ dmypy.json
127129

128130
# Pyre type checker
129131
.pyre/
132+
133+
# IDE
134+
.idea
135+
.DS_Store

0 commit comments

Comments
 (0)
Please sign in to comment.