We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed8c94f commit 6d98957Copy full SHA for 6d98957
.env
@@ -0,0 +1 @@
1
+# 如果需要自定义JWT_SECRET_KEY,请在.env中添加,否则会使用随机字符串
.gitignore
@@ -4,10 +4,6 @@ node_modules
4
*.db
5
6
7
-# local env files
8
-.env.local
9
-.env.*.local
10
-
11
# Log files
12
npm-debug.log*
13
yarn-debug.log*
@@ -125,11 +121,8 @@ celerybeat.pid
125
121
*.sage.py
126
122
127
123
# Environments
128
-.env
129
124
.venv
130
venv/
131
-ENV/
132
-env.bak/
133
venv.bak/
134
135
# Spyder project settings
dockerfile
@@ -39,7 +39,6 @@ WORKDIR /app
39
COPY backend/requirements.txt .
40
RUN pip install --no-cache-dir -r requirements.txt
41
COPY backend/ .
42
-RUN touch /app/.env
43
44
# 复制 Alembic 配置和迁移脚本
45
COPY alembic.ini .
0 commit comments