File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
200200NEXT_PUBLIC_API_URL=http://localhost:8000
@@ -354,7 +354,7 @@ EMAIL_PROVIDER="sendgrid" # Options: "sendgrid" or "smtp"
354354ENCRYPTION_KEY=" your-encryption-key"
355355```
356356
357- ### Frontend Configuration (.env.local file)
357+ ### Frontend Configuration (.env file)
358358
359359``` bash
360360# API Configuration
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN npm install -g pnpm
1111
1212# Install dependencies first (caching)
1313COPY 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
1717RUN pnpm add next-runtime-env
@@ -37,7 +37,7 @@ RUN npm install -g pnpm
3737
3838# Install production dependencies only
3939COPY 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
4343RUN pnpm add next-runtime-env
You can’t perform that action at this time.
0 commit comments