An open API service indexing awesome lists of open source software.

https://github.com/dunghenry/fastify_mysql


https://github.com/dunghenry/fastify_mysql

authentication docker docker-compose fastify mysql sequelize

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

### Fastify + MySQL + Docker

### Create folder and directory

```js
npm init -y
```

### Install dependencies

```js
npm i fastify dotenv nodemon colors
```

### Delete images none

```js

docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
```

### Run docker

```js
docker-compose up
```

### Format code

```js
npm run format
```