No description
Find a file
2025-12-26 15:52:08 -03:00
public feat(Certidao): Adiciona recursos para manipular certidões 2025-12-22 18:03:49 -03:00
src feat(OnlyOffice): Ajustes diversos no editor 2025-12-26 15:52:08 -03:00
.code-workspace fix(Prettier): Fix automático do código 2025-12-08 16:32:37 -03:00
.gitignore fix(Response): Ajuste do controle de resposta inesperadas vindas do servidor 2025-09-16 11:19:36 -03:00
.prettierrc format(Prettier): Configuração e Execução do prettier como formatador de código 2025-10-01 11:36:28 -03:00
components.json [MVPTN-80] deploy 2025-09-26 17:17:28 -03:00
Dockerfile 1641 2025-12-09 16:41:39 -03:00
eslint.config.mjs fix(eslint): Correção automática de código 2025-10-28 17:18:05 -03:00
LICENSE Initial commit 2025-08-22 20:00:13 +00:00
next.config.ts refactor(TServicoPedido): Refatoração da tela, otimizando e separando as responsabilidades 2025-12-10 18:10:45 -03:00
package-lock.json feat(Certidao): Adiciona recursos para manipular certidões 2025-12-22 18:03:49 -03:00
package.json feat(Certidao): Adiciona recursos para manipular certidões 2025-12-22 18:03:49 -03:00
postcss.config.mjs format(Prettier): Configuração e Execução do prettier como formatador de código 2025-10-01 11:36:28 -03:00
README.md feat(Certidao): Adiciona recursos para manipular certidões 2025-12-22 18:03:49 -03:00
tsconfig.json [fe-01] feat(arquitetura): Desenvolvido a arquitetura inicial do frontend 2025-08-22 17:03:03 -03:00

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

onlyoffice

docker run -i -t -d -p 8081:80 --restart=always -e JWT_ENABLED=false onlyoffice/documentserver

next em rede

npx next dev -H 0.0.0.0
"scripts": {
  "dev": "next dev",
  "build": "next build",
  "start": "next start",
  "dev:lan": "next dev -H 0.0.0.0"  <-- Adicione esta linha
},

Como acessar no outro dispositivo Descubra seu IP Local:

No Windows (seu caso), abra um terminal (CMD ou PowerShell) e digite:

Bash

ipconfig Procure por Endereço IPv4 (geralmente começa com 192.168.x.x ou 10.0.x.x).

Acesse no navegador: No celular ou outro computador, digite: http://SEU_IP_AQUI:3000

Exemplo: http://192.168.0.15:3000