https://github.com/mateuschaves/musify-backend
💚 Gerenciador de músicas
https://github.com/mateuschaves/musify-backend
docker docker-compose nodejs postgres typeorm typescript
Last synced: 3 months ago
JSON representation
💚 Gerenciador de músicas
- Host: GitHub
- URL: https://github.com/mateuschaves/musify-backend
- Owner: mateuschaves
- Created: 2020-09-23T22:40:07.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T19:41:09.000Z (almost 6 years ago)
- Last Synced: 2025-12-25T22:32:08.699Z (6 months ago)
- Topics: docker, docker-compose, nodejs, postgres, typeorm, typescript
- Language: TypeScript
- Homepage:
- Size: 359 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Musify backend
💚 Gerenciador de músicas
## Tecnologias
:white_check_mark: Express\
:white_check_mark: Docker\
:white_check_mark: Docker Compose\
:white_check_mark: TypeORM\
:white_check_mark: Typescript\
:white_check_mark: Postgres
[Link da collection no postman](https://documenter.getpostman.com/view/4758899/TVRd8qct)
## Instalação
```bash
$ npm install
```
ou
```
$ yarn install
```
## Variáveis de ambiente
crie um arquivo ``.env`` seguindo a mesma estrutura do arquivo ``.env.example``
```
PORT=3000
# database
DB_PORT=5432
DB_HOST=
DB_USER=
DB_PASS=
DB_NAME=
# security
JWT_SECRET=
JWT_EXPIRES=
```
## Executando a aplicação
```bash
docker-compose build
docker-compose up
```