feat: create project directory structure and env template

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-24 08:55:04 -06:00
parent 4afc7c35a6
commit 2a9891ce69
8 changed files with 15 additions and 0 deletions

15
.env.example Normal file
View File

@@ -0,0 +1,15 @@
# SneakySwole Environment Configuration
# Copy this file to .env and fill in real values.
# Admin credentials (used to create admin user on first run)
ADMIN_USERNAME=admin
ADMIN_PASSWORD=changeme
# App settings
APP_ENV=development
APP_HOST=0.0.0.0
APP_PORT=8000
APP_LOG_LEVEL=info
# Database
DATABASE_URL=sqlite:///data/sneakyswole.db

0
app/__init__.py Normal file
View File

0
app/models/__init__.py Normal file
View File

0
app/routes/__init__.py Normal file
View File

0
app/services/__init__.py Normal file
View File

0
app/utils/__init__.py Normal file
View File

0
data/.gitkeep Normal file
View File

0
tests/__init__.py Normal file
View File