- Reutilice un esquema que habia realizado para el backend lo pueden ver en jwt-login lo mismo para el frontend.
Almundo-server Backend demo api v1
Almundo-server Backend demo api v2 - con GraphQL
Crecer profesionalmente y seguir aprendiendo en el día a día. ¡ Nunca paro de aprender !
etiqueta | mensaje |
---|---|
feat: | "Un nuevo feature importante" |
fix: | "fixeado bug" |
refactor: | "refactorización de código" |
docs: | "documentación" |
Tener instalado Node.js y MongoDB.
MONGODB_URL=mongodb://localhost:27017/examen-almundo
SOCKET_URL_CORONA=https://TU-API-DEPLOYADA/api/v1/coronavirus
SOCKET_URL_CORONA_ARGENTINA=http://TU-API-DEPLOYADA/api/v1/coronavirus/argentina
Instalar las dependencias e iniciar:
$ npm install
En modo desarrollo
$ npm run dev
En modo produccion
$ npm start
En modo debug:
$ npm run debug
Lanzar nueva version:
$ npm run release
Testear Api Rest:
$ npm run dev
$ npm test
$ docker-compose build && docker-compose up
Field Name: name | value: ingrese titulo del hotel
Field Name: stars | value: 1 (ahora como numero)
Field Name: image | value: 6623490_6_b.jpg
Field Name: price | value: 1267.57
Field Name: amenities | value: business-center
Field Name: amenities | value: nightclub
/api/v1/hoteles(GET)
/api/v1/hoteles/:id (GET)
/api/v1/hoteles (POST)
/api/v1/hoteles/:id (PUT)
/api/v1/hoteles/:id (DELETE)
/api/v1/hoteles/:id/habitaciones (POST)
/api/v1/coronavirus (GET)
/api/v1/coronavirus/argentina (GET)
/api/v1/coronavirus/argentina/provincia (GET)
/api/v2/graphql
{
hoteles {
id
name
description
}
}
name: { type: String },
description: { type: String },
address: { type: String },
neighborhood: { type: String },
province: { type: String },
latitude: { type: String },
longitude: { type: String },
stars: { type: Number },
image: { type: String },
price: { type: Number},
discount: { type: Number },
phone: { type: String },
amenities: { type: Array },
rooms: [{ type: Schema.Types.ObjectId, ref: 'Room' }]
name: { type: String },
price: { type: Number },
description: { type: String },
availability: { type: Number },
image: { type: String },
amenities: { type: Array }
date: { type: String },
titulo: { type: String },
confirmados: { type: Number },
total_mundo: { type: Number },
recuperados: { type: Number },
fallecidos: { type: Number },
type: { type: String },
properties: {
lugar: { type: String, required: true },
municipalidad: { type: String, required: true },
ciudad: { type: String, required: true },
confirmados: { type: Number, require: true },
fallecidos: { type: Number, require: true },
recuperados: { type: Number, require: true },
},
geometry: {
type: { type: String, enum: ['Point'] },
coordinates: { type: [Number]}
}
provincia: { type: String, required: true },
municipalidad: { type: String, required: true },
ciudad: { type: String, required: true },
confirmados: { type: Number, require: true },
fallecidos: { type: Number, require: true },
recuperados: { type: Number, require: true },