Initial release

This commit is contained in:
2025-05-30 17:07:06 +03:00
commit cd63464bc2
28 changed files with 988 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: "3.8"
services:
app:
build:
context: .
args:
VITE_API_BASE_URL: ${VITE_API_BASE_URL}
VITE_ROOT_BASE_URL: ${VITE_ROOT_BASE_URL}
ports:
- "80:80"
env_file:
- .env
restart: unless-stopped