22 lines
526 B
Plaintext
22 lines
526 B
Plaintext
# Environment variables example
|
|
# Copy this file to .env.local and update the values as needed
|
|
|
|
# Node
|
|
NODE_ENV=development
|
|
|
|
# Public
|
|
NEXT_PUBLIC_AUTH_API_BASE_URL=https://localhost:3000/api
|
|
|
|
# Server
|
|
DATABASE_URL="postgresql://vibecut:vibecut@localhost:5432/vibecut"
|
|
|
|
UPSTASH_REDIS_REST_URL=http://localhost:8079
|
|
UPSTASH_REDIS_REST_TOKEN=example_token_here
|
|
|
|
MARBLE_WORKSPACE_KEY=your_workspace_key_here
|
|
|
|
FREESOUND_CLIENT_ID=your_client_id_here
|
|
FREESOUND_API_KEY=your_api_key_here
|
|
|
|
MODAL_TRANSCRIPTION_URL=your_modal_url_here
|