Extremum Web

This commit is contained in:
atla8167 2024-12-09 14:55:16 +02:00
parent 1d8bc13551
commit 4db5b947e4
31871 changed files with 1806 additions and 3064 deletions
.gitignore
base
db.sqlite3
extremum_web
__pycache__
bin
lib/python3.10/site-packages/Cython
Build
Compiler

45
.gitignore vendored

@ -1,3 +1,42 @@
/data/
/staticfiles/
/others/
# Python
*.pyc
__pycache__/
# Virtual environments
venv/
env/
.venv/
# Django
db.sqlite3
*.log
*.pot
*.pyc
__pycache__/
media/
staticfiles/
# Secrets
.env
config/settings_local.py
# Node
node_modules/
# Editors
.idea/
.vscode/
.spyderproject
.ropeproject
# Cache
*.cache
*.coverage
.pytest_cache/
.mypy_cache/
htmlcov/
# Deployment
*.pid
Dockerfile

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

8
extremum_web/bin/dotenv Executable file

@ -0,0 +1,8 @@
#!/home/lakes/extremum_web/extremum_web/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from dotenv.__main__ import cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli())

Some files were not shown because too many files have changed in this diff Show More