Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matias-gonz/aprende-ya
https://github.com/matias-gonz/aprende-ya
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/matias-gonz/aprende-ya
- Owner: matias-gonz
- Created: 2023-10-08T17:30:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-21T14:34:34.000Z (12 months ago)
- Last Synced: 2023-11-21T20:35:03.713Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.15 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aprende-ya
## Como usar con docker
Primero instalar docker + docker compose.
Despues ejecutar:
```sh
make run
```Levanta la app, api y la base de datos:
* **app:** http://localhost:3000/
* **api:** http://0.0.0.0:8000/
* **db:** postgresql://user:password@db:5432/db## Como usar la app sin docker
Recomiendo para develop de la app asi los cambios se actualizan directamente y no hay que volver a hacer build.
Primero instalar npm.
Despues instalar dependencias:
```sh
cd app
npm install
```Para correr:
```sh
npm run
```