Files
Claude Code Assistant 4b7f9403af chore: add contributing guidelines and PR workflow templates
🚀 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-16 13:44:11 -04:00

15 lines
390 B
Bash

# GreaterWMS Environment Configuration
DEBUG=True
SECRET_KEY=django-insecure-development-key-change-in-production
ALLOWED_HOSTS=localhost,127.0.0.1,0.0.0.0
# Database Configuration (using SQLite for development)
DATABASE_ENGINE=django.db.backends.sqlite3
DATABASE_NAME=db.sqlite3
# CORS Configuration
CORS_ALLOW_ALL_ORIGINS=True
# Static/Media Files
STATIC_URL=/static/
MEDIA_URL=/media/