-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #187 from raiane-oliveira/refactor/cleanup-and-rea…
…dme-improvements Refactor/cleanup and readme improvements
- Loading branch information
Showing
5 changed files
with
77 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Configuração do ambiente | ||
NODE_ENV="development" | ||
PORT= # Porta onde o projeto vai rodar na sua máquina | ||
|
||
# JWT | ||
SECRET_KEY="" # Uma string qualquer, chave para gerar o JWT | ||
|
||
# Conexão com o banco de dados | ||
TYPEORM_HOST="localhost" # Host name do seu banco (geralmente quando está na sua maquina fica localhost) | ||
TYPEORM_PORT=5432 # A porta geralmente é 5432, se no seu caso for outra porta basta alterar | ||
TYPEORM_USERNAME="docker" # Usuário do servidor Postgres via docker compose | ||
TYPEORM_PASSWORD="ignite" # Senha do servidor Postgres via docker compose | ||
TYPEORM_DATABASE="linkedin_backend" # Banco de dados a ser conectado via docker compose | ||
|
||
CA_CERT="" # Apenas para o db em produção | ||
|
||
# AWS S3 | ||
AWS_ACCESS_KEY_ID="" | ||
AWS_SECRET_ACCESS_KEY="" | ||
AWS_S3_BUCKET_NAME="" | ||
|
||
# Website | ||
FRONTEND_URL="http://localhost:3000" | ||
|
||
# Web Scaper | ||
VACANCIES_URL="http://localhost:3333" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters