mirror of
https://github.com/GreaterWMS/GreaterWMS.git
synced 2026-06-19 07:36:00 +00:00
4b7f9403af
🚀 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
390 B
Bash
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/ |