mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 15:26:36 +00:00
chore(env): merge .env.local.example into .env.example
This commit is contained in:
parent
907d108714
commit
b94daca2cf
22
.env.example
22
.env.example
@ -1,3 +1,25 @@
|
||||
# The connection string for the PostgreSQL database
|
||||
# Format: postgresql://username:password@hostname:port/database_name?schema=public
|
||||
DATABASE_URL="postgresql://username:password@localhost:5432/mydb?schema=public"
|
||||
|
||||
# WebSocket URL for the LSP service (C Language - clangd)
|
||||
NEXT_PUBLIC_LSP_C_PROTOCOL="ws"
|
||||
NEXT_PUBLIC_LSP_C_HOSTNAME="localhost"
|
||||
NEXT_PUBLIC_LSP_C_PORT="4594"
|
||||
NEXT_PUBLIC_LSP_C_PATH="/clangd"
|
||||
|
||||
# WebSocket URL for the LSP service (C++ Language - clangd)
|
||||
NEXT_PUBLIC_LSP_CPP_PROTOCOL="ws"
|
||||
NEXT_PUBLIC_LSP_CPP_HOSTNAME="localhost"
|
||||
NEXT_PUBLIC_LSP_CPP_PORT="4595"
|
||||
NEXT_PUBLIC_LSP_CPP_PATH="/clangd"
|
||||
|
||||
# Added by `npx auth secret`
|
||||
AUTH_SECRET="New Generated Secret"
|
||||
|
||||
# # GitHub OAuth client ID and GitHub OAuth client secret
|
||||
AUTH_GITHUB_ID=""
|
||||
AUTH_GITHUB_SECRET=""
|
||||
|
||||
# The base URL for authentication callbacks, typically the root URL of your application
|
||||
AUTH_URL="http://localhost:3000"
|
||||
|
@ -1,14 +0,0 @@
|
||||
# WebSocket URL for the LSP service (C Language - clangd)
|
||||
NEXT_PUBLIC_LSP_C_PROTOCOL="ws"
|
||||
NEXT_PUBLIC_LSP_C_HOSTNAME="localhost"
|
||||
NEXT_PUBLIC_LSP_C_PORT="4594"
|
||||
NEXT_PUBLIC_LSP_C_PATH="/clangd"
|
||||
|
||||
# WebSocket URL for the LSP service (C++ Language - clangd)
|
||||
NEXT_PUBLIC_LSP_CPP_PROTOCOL="ws"
|
||||
NEXT_PUBLIC_LSP_CPP_HOSTNAME="localhost"
|
||||
NEXT_PUBLIC_LSP_CPP_PORT="4595"
|
||||
NEXT_PUBLIC_LSP_CPP_PATH="/clangd"
|
||||
|
||||
# Added by `npx auth secret`
|
||||
AUTH_SECRET="New Generated Secret"
|
Loading…
Reference in New Issue
Block a user