Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fernando-gimeno/pokedex2
https://github.com/fernando-gimeno/pokedex2
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fernando-gimeno/pokedex2
- Owner: fernando-gimeno
- Created: 2024-04-23T20:05:20.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-23T20:14:10.000Z (9 months ago)
- Last Synced: 2024-06-23T01:27:15.788Z (7 months ago)
- Language: TypeScript
- Size: 107 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
[circleci-url]: https://circleci.com/gh/nestjs/nest# Pokedex API
## Ejecutar en desarrollo
1. Clonar el repositorio
2. Ejecutar
```
yarn install
```
3. Tener Nest CLI instalado
```
npm i -g @nestjs/cli
```4. Levantar la base de datos
```
docker-compose up -d
```5. Clonar el archivo ```.env.template``` y renombrar la copia a ```.env```
6. Llenar las variables de entorno definidas en el ```.env```
7. Ejecutar la aplicación en modo desarrollo:
```
yarn start:dev
```8. Reconstruir la base de datos con la semilla
```
http://localhost:3000/api/seed
```## Stack usado
* NestJS
* MongoDB
* Docker