-
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.
Merge pull request #6 from pax-app/devel
First Stable Release
- Loading branch information
Showing
30 changed files
with
5,047 additions
and
48 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
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,6 @@ | ||
DB_HOST= | ||
DB_PORT= | ||
DB_NAME= | ||
DB_USER= | ||
DB_PASS= | ||
SENTRY_DSN= |
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,26 @@ | ||
module.exports = { | ||
env: { | ||
es6: true, | ||
node: true, | ||
}, | ||
extends: [ | ||
'airbnb-base', | ||
'prettier', | ||
], | ||
plugins: ['prettier'], | ||
globals: { | ||
Atomics: 'readonly', | ||
SharedArrayBuffer: 'readonly', | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 2018, | ||
sourceType: 'module', | ||
}, | ||
rules: { | ||
"prettier/prettier": "error", | ||
"class-methods-use-this": "off", | ||
"no-param-reassign": "off", | ||
"camelcase": "off", | ||
"no-unused-vars": ["error", { "argsIngorePattern": "next" }] | ||
}, | ||
}; |
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,18 @@ | ||
# Descrição | ||
Breve descrição das atividades realizadas para conclusão da issue e outros pontos relevantes. | ||
|
||
# Issue Relacionada | ||
|
||
<!---Linkar todas as issues envolvidas no PR seguindo a estrutura resolve #1, pois quando o PR é aceito todas as issues são fechadas---> | ||
resolve pax-app/Wiki# | ||
|
||
# Tipo de Mudanças | ||
|
||
- [ ] História de Usuário | ||
- [ ] Historia Técnica | ||
- [ ] Wiki | ||
|
||
# Responsáveis pela revisão | ||
|
||
@esiofreitas (PO) | @lucasdutraf (PO) | ||
@(Membro do time de desenvolvimento que não esteja envolvido do PR) |
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 |
---|---|---|
|
@@ -59,3 +59,9 @@ typings/ | |
|
||
# next.js build output | ||
.next | ||
|
||
# Folder with nodejs code built by sucrase | ||
dist | ||
|
||
#vscode | ||
.vscode |
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,4 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
} |
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,23 @@ | ||
sudo: required | ||
language: python | ||
python: 3.8 | ||
services: | ||
- docker | ||
|
||
before_install: | ||
# install heroku CLI | ||
- wget -qO- https://toolbelt.heroku.com/install.sh | sh | ||
# login to docker registries on heroku | ||
- heroku container:login | ||
|
||
script: | ||
# building docker image | ||
- heroku container:push web --app $HEROKU_APPNAME | ||
|
||
deploy: | ||
provider: script | ||
script: | ||
# releasing image | ||
heroku container:release web --app $HEROKU_APPNAME | ||
on: | ||
branch: devel |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# Pax_Chat | ||
# Chat | ||
<a href="https://codeclimate.com/github/pax-app/Chat/maintainability"><img src="https://api.codeclimate.com/v1/badges/82199d6962eee4d9ecd8/maintainability" /></a> | ||
|
||
Microsserviço responsável pelo chat entre cliente-prestador. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"execMap": { | ||
"js": "sucrase-node" | ||
} | ||
} |
Oops, something went wrong.