Skip to content

Commit

Permalink
Atualização na documentação
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Dec 15, 2024
1 parent 2249e30 commit 58e9a86
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs/INSTALL_VPS.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ sudo apt install nginx
sudo nano /etc/nginx/sites-available/Press-Ticket-frontend
```

Preencha com as informações abaixo:
Preencha com as informações abaixo, atualizando as informações de acordo com o seu domínio:

```
server {
Expand All @@ -386,7 +386,7 @@ server {
sudo nano /etc/nginx/sites-available/Press-Ticket-backend
```

Preencha com as informações abaixo:
Preencha com as informações abaixo atualizando as informações de acordo com o seu domínio:

```
server {
Expand Down
45 changes: 39 additions & 6 deletions docs/INSTALL_localhost.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Execute o seguinte comando no seu terminal para criar o banco de dados:

```bash
CREATE DATABASE press-ticket CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE DATABASE press_ticket CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
```

#### 1.2. Se estiver usando XAMPP ou WAMPP, poderá criar o banco de dados via phpMyAdmin:
Expand Down Expand Up @@ -59,25 +59,35 @@ Crie ou edite o arquivo `.env` no diretório `backend` com as seguintes informa

```bash
NODE_ENV=
WEBHOOK=https://true-melons-travel.loca.lt

#URLs e Portas
WEBHOOK=https://ninety-yaks-trade.loca.lt
BACKEND_URL=http://localhost
FRONTEND_URL=http://localhost:3333
PORT=8080
PROXY_PORT=8080

#Caminho do Chrome
CHROME_BIN=C:\Program Files\Google\Chrome\Application\chrome.exe

#Dados de acesso ao Banco de dados
DB_DIALECT=mysql
DB_HOST=localhost
DB_TIMEZONE=-03:00
DB_USER=root
DB_PASS=
DB_NAME=press-ticket
DB_NAME=press_ticket

#Limitar Usuários e Conexões
USER_LIMIT=3
CONNECTIONS_LIMIT=1
CONNECTIONS_LIMIT=5

JWT_SECRET=5g1yk7pD9q3YL0iBEuUlPwOiWLj3I5tK+/rhHm+jgdE=
JWT_REFRESH_SECRET=F2c8gag5nvqQkBOmOu5dWkK+gqZnjPUzHmx7S2tWkvs=
#Modo DEMO que evita alterar algumas funções, para ativar: ON
DEMO=OFF

#Permitir a rotação de tokens
JWT_SECRET=JYszCWFNE0kmbbb0w/dvMl66zDd1GZozzaC27dKOCDY=
JWT_REFRESH_SECRET=FwJXkGgXv7ARfxPRb7/6RdNmtXJlR4PsQvvw8VIbOho=
```

---
Expand Down Expand Up @@ -153,9 +163,18 @@ cd Press-Ticket/frontend
Crie ou edite o arquivo `.env` no diretório `frontend` com as seguintes informações:

```bash
#URL BACKEND
REACT_APP_BACKEND_URL=http://localhost:8080

#Tempo de encerramento automático dos tickets em horas
REACT_APP_HOURS_CLOSE_TICKETS_AUTO=

#PORTA do frontend
PORT=3333

# Para permitir acesso apenas do MasterAdmin (sempre ON)
REACT_APP_MASTERADMIN=ON

```

---
Expand Down Expand Up @@ -203,3 +222,17 @@ admin
```

---

# Usuário Master para Acesso

Usuário:

```
[email protected]
```

Senha:

```
masteradmin
```
2 changes: 1 addition & 1 deletion docs/UPDATE_VPS.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ cd Press-Ticket/
Com o diretório correto acessado, execute o script de atualização utilizando o comando abaixo:

```bash
sh UPDATE.sh
chmod +x UPDATE.sh && ./UPDATE.sh
```

> Nota: O script `UPDATE.sh` será responsável por realizar o processo de atualização automaticamente.
Expand Down

0 comments on commit 58e9a86

Please sign in to comment.