-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Han 55: Deployment microservice (#3)
## Linked ticket in Jira - https://hanagotchi.atlassian.net/browse/HAN-55 ## Describe your changes, marking the new features and possible risks - Se desplegó el microservicio en Heroku junto a la base de datos PostgreSQL. - Se recomienda leer el documento relacionado de https://docs.google.com/document/d/15BeG5qSsqijsD0bUxlW2gYuGNDYbyXqj5GzICZjJOCU/edit el cual detalla los cambios a tener en cuenta para desplegar los microservicios futuros.
- Loading branch information
Showing
24 changed files
with
589 additions
and
549 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 |
---|---|---|
@@ -1,8 +1,15 @@ | ||
POSTGRES_USER= | ||
POSTGRES_PASSWORD= | ||
POSTGRES_DB= | ||
POSTGRES_HOST= | ||
POSTGRES_PORT= | ||
DATABASE_URL= | ||
GOOGLE_CLIENT_ID= | ||
# Users service | ||
LOGGING_LEVEL= | ||
PORT= | ||
|
||
# Postgres | ||
POSTGRES_USER= | ||
POSTGRES_PASSWORD= | ||
POSTGRES_HOST= | ||
POSTGRES_PORT= | ||
POSTGRES_DB= | ||
POSTGRES_SCHEMA= | ||
|
||
GOOGLE_CLIENT_ID= | ||
GOOGLE_CLIENT_SECRET= |
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,35 +1,35 @@ | ||
|
||
name: Linters | ||
|
||
on: 'push' | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install Python dependencies | ||
run: pip install black flake8 | ||
|
||
- name: Run linters | ||
uses: wearerequired/lint-action@v1 | ||
with: | ||
black: true | ||
|
||
- name: flake8 Lint | ||
uses: py-actions/flake8@v1.2.0 | ||
with: | ||
max-line-length: "78" | ||
|
||
- name: GitHub Action for pylint | ||
uses: cclauss/GitHub-Action-for-pylint@0.7.0 | ||
|
||
name: Linters | ||
|
||
on: 'push' | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install Python dependencies | ||
run: pip install black flake8 | ||
|
||
- name: Run linters | ||
uses: wearerequired/lint-action@v1 | ||
with: | ||
black: true | ||
|
||
- name: flake8 Lint | ||
uses: py-actions/flake8@v1.2.0 | ||
with: | ||
max-line-length: "78" | ||
|
||
- name: GitHub Action for pylint | ||
uses: cclauss/GitHub-Action-for-pylint@0.7.0 | ||
|
Oops, something went wrong.