Merge server state with origin/main (keep origin version)
This commit is contained in:
11
.dockerignore
Normal file
11
.dockerignore
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
.venv
|
||||||
|
__pycache__
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
*.db-shm
|
||||||
|
*.db-wal
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
Dockerfile*
|
||||||
|
docker-compose*.yml
|
||||||
2
.env.example
Normal file
2
.env.example
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# Copy to .env and set your own value
|
||||||
|
SECRET_KEY=replace-with-a-long-random-string
|
||||||
BIN
__pycache__/app.cpython-314.pyc
Normal file
BIN
__pycache__/app.cpython-314.pyc
Normal file
Binary file not shown.
BIN
data/infra.db
Normal file
BIN
data/infra.db
Normal file
Binary file not shown.
2
data/leads.csv
Normal file
2
data/leads.csv
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
created_at,name,company,phone,email,city,computers,message
|
||||||
|
2026-02-12T16:33:08,Иван,ООО Тест,123,,,10,
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import multiprocessing
|
import multiprocessing
|
||||||
|
|
||||||
bind = "0.0.0.0:4545"
|
bind = "0.0.0.0:4545"
|
||||||
workers = 4
|
workers = max(4, multiprocessing.cpu_count() * 2)
|
||||||
threads = 4
|
threads = 4
|
||||||
timeout = 60
|
timeout = 60
|
||||||
graceful_timeout = 30
|
graceful_timeout = 30
|
||||||
|
|||||||
4
static/img/README.txt
Normal file
4
static/img/README.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Положите файл логотипа сюда:
|
||||||
|
static/img/infrait-logo.png
|
||||||
|
|
||||||
|
Текущий шаблон уже подключен к этому пути.
|
||||||
Reference in New Issue
Block a user