-
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.
Adiciona histórico de processamentos e melhorias na interface
- Loading branch information
Showing
5 changed files
with
158 additions
and
67 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,7 +1,7 @@ | ||
[![Stories in Ready](https://badge.waffle.io/lpirola/processador-inscricao-evento.png?label=ready&title=Ready)](https://waffle.io/lpirola/processador-inscricao-evento) | ||
[![Documentation](https://doc.esdoc.org/github.com/lpirola/processador-inscricao-evento/badge.svg)](https://doc.esdoc.org/github.com/lpirola/processador-inscricao-evento/) | ||
|
||
# Processador de instricões em eventos | ||
# Processador de inscricões em eventos | ||
É utilizado uma planilha no Google Drive para controlar o envio de e-mail com boleto para pagamento e confirmação da inscrição. | ||
|
||
## Dependências | ||
|
@@ -18,10 +18,11 @@ A sequência e os valores disponíveis são: "", "Boleto Enviado", "Boleto Pago" | |
## Adicionar variáveis de ambiente | ||
|
||
``` | ||
export REDIS_URL='redis://127.0.0.1:6379' | ||
export DATABASE_URL='mysql://[email protected]:/processador-inscricao-evento' | ||
export MAIL_SERVICE='Gmail' | ||
export MAIL_USER='[email protected]' | ||
export MAIL_PASS='xxxx' | ||
export GOOGLE_SPREADSHEET_KEY='xxxxx' | ||
export GOOGLE_CREDS='{"type": "service_account","private_key_id": "","private_key": "","client_email": "","client_id": "","auth_uri": "","token_uri": "","auth_provider_x509_cert_url": "","client_x509_cert_url": ""}' | ||
``` | ||
|
||
|
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,57 +1,58 @@ | ||
{ | ||
"name": "processador-inscricao-evento", | ||
"version": "0.0.2", | ||
"description": "Processador de inscrições em eventos que utiliza uma planilha no Google Drive para controlar o envio de e-mail para pagamento e para confirmação da inscrição", | ||
"main": "bin/www", | ||
"scripts": { | ||
"start": "./node_modules/.bin/babel-node ./src/server.js", | ||
"test": "./node_modules/.bin/jasmine", | ||
"generate-docs": "./node_modules/.bin/jsdoc --configure .jsdoc.json --verbose" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lpirola/processador-inscricao-evento.git" | ||
}, | ||
"keywords": [ | ||
"queue", | ||
"web", | ||
"bdd" | ||
], | ||
"author": "Lucas Pirola <[email protected]>", | ||
"license": "GPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/lpirola/processador-inscricao-evento/issues" | ||
}, | ||
"homepage": "https://github.com/lpirola/processador-inscricao-evento#readme", | ||
"dependencies": { | ||
"async": "^1.5.0", | ||
"body-parser": "~1.13.2", | ||
"browserify-middleware": "^7.0.0", | ||
"commander": "^2.9.0", | ||
"cookie-parser": "~1.3.5", | ||
"debug": "~2.2.0", | ||
"express": "~4.13.1", | ||
"google-spreadsheet": "^1.0.1", | ||
"jade": "~1.11.0", | ||
"jeet": "^6.1.2", | ||
"kue": "^0.10.4", | ||
"mithril": "^0.2.0", | ||
"morgan": "~1.6.1", | ||
"mysql": "^2.9.0", | ||
"nodemailer": "^1.10.0", | ||
"sequelize": "^3.14.2", | ||
"serve-favicon": "~2.3.0", | ||
"stylus": "0.42.3", | ||
"babel-cli": "^6.2.1" | ||
}, | ||
"devDependencies": { | ||
"istanbul": "^0.4.1", | ||
"jasmine-es6": "0.0.18", | ||
"minami": "^1.1.1", | ||
"nodemailer-stub-transport": "^1.0.0" | ||
}, | ||
"engines" : { | ||
"node" : "v0.12.7", | ||
"npm" : "2.11.3" | ||
} | ||
"name": "processador-inscricao-evento", | ||
"version": "0.0.2", | ||
"description": "Processador de inscrições em eventos que utiliza uma planilha no Google Drive para controlar o envio de e-mail para pagamento e para confirmação da inscrição", | ||
"main": "bin/www", | ||
"scripts": { | ||
"start": "./node_modules/.bin/babel-node ./src/server.js", | ||
"test": "./node_modules/.bin/jasmine", | ||
"generate-docs": "./node_modules/.bin/jsdoc --configure .jsdoc.json --verbose" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lpirola/processador-inscricao-evento.git" | ||
}, | ||
"keywords": [ | ||
"queue", | ||
"web", | ||
"bdd" | ||
], | ||
"author": "Lucas Pirola <[email protected]>", | ||
"license": "GPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/lpirola/processador-inscricao-evento/issues" | ||
}, | ||
"homepage": "https://github.com/lpirola/processador-inscricao-evento#readme", | ||
"dependencies": { | ||
"async": "^1.5.0", | ||
"babel-cli": "^6.2.1", | ||
"body-parser": "~1.13.2", | ||
"browserify-middleware": "^7.0.0", | ||
"commander": "^2.9.0", | ||
"cookie-parser": "~1.3.5", | ||
"debug": "~2.2.0", | ||
"express": "~4.13.1", | ||
"google-spreadsheet": "^1.0.1", | ||
"jade": "~1.11.0", | ||
"jeet": "^6.1.2", | ||
"kue": "^0.10.4", | ||
"mithril": "^0.2.0", | ||
"moment": "^2.10.6", | ||
"morgan": "~1.6.1", | ||
"mysql": "^2.9.0", | ||
"nodemailer": "^1.10.0", | ||
"sequelize": "^3.14.2", | ||
"serve-favicon": "~2.3.0", | ||
"stylus": "0.42.3" | ||
}, | ||
"devDependencies": { | ||
"istanbul": "^0.4.1", | ||
"jasmine-es6": "0.0.18", | ||
"minami": "^1.1.1", | ||
"nodemailer-stub-transport": "^1.0.0" | ||
}, | ||
"engines": { | ||
"node": "v0.12.7", | ||
"npm": "2.11.3" | ||
} | ||
} |
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