Initialize web, api and database for this project. Web uses better-auth, paraglide, tailwind, shadcn components, and more. Not much else has been done.
14 lines
369 B
Plaintext
14 lines
369 B
Plaintext
# Drizzle
|
|
POSTGRES_USER="root"
|
|
POSTGRES_PASSWORD="mysecretpassword"
|
|
POSTGRES_DB="local"
|
|
|
|
DATABASE_URL="postgres://${POSTGRES_USER:-root}:${POSTGRES_PASSWORD:-password}@localhost:5432/${POSTGRES_DB:-local}"
|
|
|
|
ORIGIN=""
|
|
|
|
# Better Auth
|
|
# For production use 32 characters and generated with high entropy
|
|
# https://www.better-auth.com/docs/installation
|
|
BETTER_AUTH_SECRET=""
|