mirror of
				https://github.com/cfngc4594/monaco-editor-lsp-next.git
				synced 2025-10-31 05:50:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			743 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			743 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # PostgreSQL database credentials
 | |
| POSTGRES_USER="your_postgres_user"
 | |
| POSTGRES_PASSWORD="your_postgres_password"
 | |
| POSTGRES_DB="your_postgres_db"
 | |
| 
 | |
| # The connection string for the PostgreSQL database
 | |
| # Format: postgresql://username:password@hostname:port/database_name?schema=public
 | |
| DATABASE_URL="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}?schema=public"
 | |
| 
 | |
| # Secret key for authentication (generate a secure value)
 | |
| AUTH_SECRET="your_auth_secret"
 | |
| 
 | |
| # GitHub OAuth client ID and GitHub OAuth client secret
 | |
| AUTH_GITHUB_ID="your_github_client_id"
 | |
| AUTH_GITHUB_SECRET="your_github_client_secret"
 | |
| 
 | |
| # The base URL for authentication callbacks, typically the root URL of your application
 | |
| AUTH_URL="http://localhost:3000"
 |