Initial commit: add FastAPI MVP (모프) and existing web app
Includes FastAPI+Jinja2+HTMX+SQLite implementation with seed categories, plus deployment templates. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
18
.env.example
Normal file
18
.env.example
Normal file
@@ -0,0 +1,18 @@
|
||||
# 운영용(도커)
|
||||
# 아래 값을 복사해 .env 로 만들고 채우세요.
|
||||
|
||||
# Next.js 앱이 사용할 DB (원격 Postgres)
|
||||
DATABASE_URL="postgresql://ncue:<PASSWORD>@ncue.net:5432/all_prompt?schema=public"
|
||||
|
||||
# Caddy(HTTPS) 인증서 발급용 이메일(필수)
|
||||
CADDY_EMAIL="you@example.com"
|
||||
|
||||
# (선택) db_init 서비스용 psql 환경변수
|
||||
PGHOST="ncue.net"
|
||||
PGDATABASE="all_prompt"
|
||||
PGUSER="ncue"
|
||||
PGPASSWORD="<PASSWORD>"
|
||||
|
||||
# (선택) 프론트에서 참조할 사이트 URL
|
||||
NEXT_PUBLIC_SITE_URL="https://prompt.ncue.net"
|
||||
|
||||
Reference in New Issue
Block a user