25 lines
543 B
Markdown
25 lines
543 B
Markdown
# saas_app
|
|
|
|
Criar envlocal para usar variaveis de ambiente no em desenvolvimento
|
|
NEXT_PUBLIC_ORIUS_APP_STATE=GO
|
|
NEXT_PUBLIC_ORIUS_APP_API_URL=<http://localhost:8000/>
|
|
NEXT_PUBLIC_ORIUS_APP_API_PREFIX=api/v1/
|
|
NEXT_PUBLIC_ORIUS_APP_API_CONTENT_TYPE=application/json
|
|
|
|
## Modo Debug
|
|
|
|
Abra Run → Add Configuration… → Attach to Node.js
|
|
|
|
Configure:
|
|
|
|
{
|
|
"name": "Attach Next.js (9230)",
|
|
"type": "node",
|
|
"request": "attach",
|
|
"port": 9230,
|
|
"restart": true,
|
|
"smartStep": true,
|
|
"skipFiles": ["<node_internals>/**"]
|
|
}
|
|
|
|
npm run dev:debug
|