Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 7 additions & 11 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# RustChain Founding Miner - Environment Configuration
# Copy this file to .env and update with your values
# Rent-a-Relic Market - Environment Configuration
# Copy this file to .env and fill in your values

# JWT Secret (CHANGE THIS IN PRODUCTION!)
JWT_SECRET=founding-miner-super-secret-key-change-me
# Security
SECRET_KEY=your-super-secret-key-change-in-production
POSTGRES_PASSWORD=your-secure-database-password

# Database Configuration (auto-configured in docker-compose)
# DATABASE_URL=postgresql://founding_miner:founding_miner_password@postgres:5432/founding_miner

# Redis Configuration (auto-configured in docker-compose)
# Optional: External service configurations
# REDIS_URL=redis://redis:6379/0

# Optional: Custom port for Nginx
NGINX_PORT=8080
# DATABASE_URL=postgresql://rustchain:PASSWORD@postgres:5432/rustchain_market
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Environment
.env
.env.local
.env.*.local

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
.venv/

# IDE
.vscode/
.idea/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Logs
*.log
logs/

# Database
*.db
*.sqlite3

# Docker
docker-compose.override.yml
30 changes: 0 additions & 30 deletions Dockerfile

This file was deleted.

Loading