Skip to content

Commit fe778b3

Browse files
committed
Merge branch 'release/0.1.0'
2 parents f1f2ba8 + 4e1f663 commit fe778b3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ cp .env.example .env
194194
# Edit .env with your API URL (default: http://localhost:8000)
195195
```
196196

197-
The frontend `.env.local` should contain:
197+
The frontend `.env` should contain:
198198

199199
```env
200200
NEXT_PUBLIC_API_URL=http://localhost:8000
@@ -354,7 +354,7 @@ EMAIL_PROVIDER="sendgrid" # Options: "sendgrid" or "smtp"
354354
ENCRYPTION_KEY="your-encryption-key"
355355
```
356356

357-
### Frontend Configuration (.env.local file)
357+
### Frontend Configuration (.env file)
358358

359359
```bash
360360
# API Configuration

frontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN npm install -g pnpm
1111

1212
# Install dependencies first (caching)
1313
COPY package.json pnpm-lock.yaml ./
14-
RUN pnpm install --frozen-lockfile
14+
RUN pnpm install --no-frozen-lockfile
1515

1616
# Instalar explicitamente o next-runtime-env
1717
RUN pnpm add next-runtime-env
@@ -37,7 +37,7 @@ RUN npm install -g pnpm
3737

3838
# Install production dependencies only
3939
COPY package.json pnpm-lock.yaml ./
40-
RUN pnpm install --prod --frozen-lockfile
40+
RUN pnpm install --prod --no-frozen-lockfile
4141

4242
# Instalar explicitamente o next-runtime-env na produção
4343
RUN pnpm add next-runtime-env

0 commit comments

Comments
 (0)