Api que alimenta os projetos front-end-cardapio-ru e app-cardapio-ru
- node
- knex
- postgres
- 1
- Copie o arquivo .env_example
- Cole e renomeie para .env
- Adicione qualquer string dentro do authSecret
- 2
- Adicione o acesso ao seu Banco de Dados
module.exports = { client: "postgresql", connection: { host: "localhost", port: "5432", database: "", user: "postgres", password: "", }, pool: { min: 2, max: 10, }, migrations: { tableName: "knex_migrations", }, };
Clone o projeto
git clone [email protected]:murilo-alvesmelo/api-cardapio-ru.git
Entre no diretório do projeto
cd api-cardapio-ru
Instale as dependências
npm install
Migrações das tabelas
knex migrate:make create_table_users
knex migrate:make create_table_cardapio
Inicie a aplicação
npm start
- Web services
- express
- body-parser
- cors
- consign
- Segurança
- bcrypt-nodejs
- jwt-simple
- passport
- passport-jwt
- Conexão com o database
- pg
- knex
Para essa aplicação e criada uma integração com um servidor de banco de dados Postgres no localhost da sua maquina:
Entidades da tabela users:
exports.up = function (knex) {
return knex.schema.createTable("users", (table) => {
table.increments("id").primary();
table.string("name").notNullable();
table.string("email").notNullable();
table.string("cpf").notNullable().unique();
table.string("password").notNullable();
});
};
Entidades da tabela cardapio:
exports.up = function (knex) {
return knex.schema.createTable("cardapio", (table) => {
table.increments("id").primary();
table.string("refeicao").notNullable();
table.string("salada");
table.string("guarnicao");
table.string("leguminosas");
table.string("carboidrato");
table.dateTime("estimateAt");
table.integer("userId").references("id").inTable("users").notNullable();
});
};
POST http://localhost:5000/signup
Parâmetro | Tipo | Descrição |
---|---|---|
name |
string |
Obrigatório |
cpf |
string |
Obrigatório |
email |
string |
Obrigatório |
password |
string |
Obrigatório |
POST http://localhost:5000/login
Parâmetro | Tipo | Descrição |
---|---|---|
email |
string |
Obrigatório |
password |
string |
Obrigatório |
GET http://localhost:5000/cardapio/
GET http://localhost:5000/cardapio/${id}
POST http://localhost:5000/cardapio
Parâmetro | Tipo | Descrição |
---|---|---|
Bearer Token |
string |
Obrigatório |
refeicao |
string |
Obrigatório |
salada |
string |
|
guarnicao |
string |
|
leguminosas |
string |
|
carboidrato |
string |
|
estimateAt |
string |
PUT http://localhost:5000/cardapio/${id}
Parâmetro | Tipo | Descrição |
---|---|---|
Bearer Token |
string |
Obrigatório |
cardapio |
object |
Obrigatório |
id |
number |
Obrigatório |
DELETE http://localhost:5000/cardapio/${id}
Parâmetro | Tipo | Descrição |
---|---|---|
Bearer Token |
string |
Obrigatório |
cardapio |
object |
Obrigatório |
id |
number |
Obrigatório |