This commit introduces the initial setup for the Lightcloud Flutter application including: - Basic project structure with Android and web configurations - Authentication screen with login/register functionality - Initial UI components and theme setup
16 lines
450 B
Plaintext
16 lines
450 B
Plaintext
# Database Configuration
|
|
DATABASE_URL=postgres://postgres:postgres@localhost:5432/litecloud
|
|
|
|
# JWT Authentication & Encryption
|
|
JWT_SECRET=your_jwt_secret_key_here_make_it_long_and_random
|
|
JWT_EXPIRATION=86400 # in seconds
|
|
|
|
# Generate a secure random key with: openssl rand -base64 32
|
|
MASTER_KEY=YourBase64EncodedMasterKeyHere
|
|
|
|
STORAGE_PATH=./storage
|
|
DEFAULT_USER_QUOTA=5368709120 # 5GB in bytes
|
|
|
|
RUST_LOG=info,tower_http=debug
|
|
PORT=8080
|
|
HOST=0.0.0.0 |