initial webapp draft
This commit is contained in:
commit
4f2723b767
22 changed files with 713 additions and 0 deletions
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
services:
|
||||
web:
|
||||
build: .
|
||||
container_name: cost-dashboard
|
||||
ports:
|
||||
- "8000:8000"
|
||||
working_dir: /cost-assistant
|
||||
volumes:
|
||||
- .:/cost-assistant # live reload for code/templates/static
|
||||
- ./data/uploads:/cost-assistant/data/uploads # persistent uploads
|
||||
env_file:
|
||||
- .env # RATE_PER_M2_BLACK and RATE_PER_M2_COLOR
|
||||
command: python -m uvicorn main:app --host 0.0.0.0 --port 8000 --reload
|
||||
Loading…
Add table
Add a link
Reference in a new issue