Initial commit

This commit is contained in:
Daniel Haus 2026-02-11 14:57:06 +03:00
commit ff50ea6784
12 changed files with 509 additions and 0 deletions

8
config.py Normal file
View file

@ -0,0 +1,8 @@
DB_HOST = "localhost"
DB_PORT = 5432
DB_NAME = "toy_store_a"
DB_USER = "postgres"
DB_PASSWORD = "1234"
DISCOUNT_COLOR = "#dbe68a"
OUT_OF_STOCK_COLOR = "#565750"