Initial commit
This commit is contained in:
18
.env.example
Normal file
18
.env.example
Normal file
@@ -0,0 +1,18 @@
|
||||
# -------------------------------------------------------
|
||||
# RemoteLink — Environment Variables
|
||||
# Copy this file to .env and fill in the values
|
||||
# -------------------------------------------------------
|
||||
|
||||
# PostgreSQL credentials (used by docker-compose)
|
||||
POSTGRES_USER=remotelink
|
||||
POSTGRES_PASSWORD=change_me_strong_password
|
||||
POSTGRES_DB=remotelink
|
||||
|
||||
# Full database URL (auto-built from above in docker-compose, but set here for local dev)
|
||||
DATABASE_URL=postgresql://remotelink:change_me_strong_password@localhost:5432/remotelink
|
||||
|
||||
# NextAuth secret — generate with: openssl rand -base64 32
|
||||
AUTH_SECRET=change_me_generate_with_openssl_rand_base64_32
|
||||
|
||||
# Public URL of the app (used for invite links, etc.)
|
||||
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
||||
Reference in New Issue
Block a user