-
Notifications
You must be signed in to change notification settings - Fork 10
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 #19 from filiperochalopes/feature/testing-env
deploy training version and create update script
- Loading branch information
Showing
42 changed files
with
974 additions
and
750 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
# Timezone da aplicação que definirá o horário do sistema | ||
TZ='America/Bahia' | ||
|
||
# Configurações de HTTPS | ||
HTTPS_DOMAIN='exemplo.gov.br' |
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 |
---|---|---|
@@ -1,7 +1,18 @@ | ||
# Configurações de banco de dados | ||
POSTGRES_DB='esus' | ||
POSTGRES_USER='postgres' | ||
POSTGRES_PASSWORD='esus' | ||
POSTGRESQL_PORT=54351 | ||
APP_PORT=88 | ||
PGWEB_PORT=8099 | ||
POSTGRES_PASS='pass' | ||
POSTGRES_HOST='host.docker.internal' | ||
POSTGRES_PORT=5432 | ||
|
||
# Arquivo específico de instalação para determinar versão a ser instalada, caso não preenchido o script buscará a última versão disponível na página | ||
FILENAME="https://arquivos.esusab.ufsc.br/PEC/e925378f33a611e7/5.3.19/eSUS-AB-PEC-5.3.19-Linux64.jar" | ||
|
||
# Porta da aplicação de desenvolvimento | ||
APP_PORT=8081 | ||
|
||
# Timezone da aplicação que definirá o horário do sistema | ||
TZ='America/Bahia' | ||
|
||
# Configurações de HTTPS | ||
HTTPS_DOMAIN='exemplo.gov.br' |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,24 +1,28 @@ | ||
data | ||
*.jar | ||
__pycache__ | ||
*.pyc | ||
*.backup | ||
*.class | ||
*.java | ||
*.deb | ||
*.log | ||
*.sql | ||
*.gz | ||
data/ | ||
__pycache__ | ||
.webassets-cache | ||
.vscode/ | ||
.env | ||
.env.external-db | ||
client_secret_*.json | ||
credentials.json | ||
token.json | ||
venv | ||
*.class | ||
*.java | ||
pec.log | ||
*.deb | ||
*.log | ||
docker-compose.npm.yml | ||
*.sql | ||
.env.external-db | ||
decompiled-java/ | ||
certificates/ | ||
*entrypoint/ | ||
nginx/ | ||
opt-esus/ | ||
esus-*/ | ||
certificates/ | ||
nginx/ | ||
jar-*/ |
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
Oops, something went wrong.