chore: initialize application scaffold

This commit is contained in:
2026-08-23 19:55:59 +08:00
parent 36088ce005
commit 6591e3fa1e
36 changed files with 7771 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# PostgreSQL 数据库主机地址
DATABASE_HOST=127.0.0.1
# PostgreSQL 数据库端口
DATABASE_PORT=5432
# PostgreSQL 数据库名称
DATABASE_NAME=example_app
# PostgreSQL 数据库用户名
DATABASE_USER=postgres
# PostgreSQL 数据库密码,请仅在本地 .env 文件中维护
DATABASE_PASSWORD=change_me
# 服务端监听端口
API_PORT=3000