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
- Host: GitHub
- URL: https://github.com/dunghenry/fastify_mysql
- Owner: dunghenry
- Created: 2022-11-28T03:38:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-28T16:28:31.000Z (over 3 years ago)
- Last Synced: 2025-01-25T19:29:25.617Z (over 1 year ago)
- Topics: authentication, docker, docker-compose, fastify, mysql, sequelize
- Language: JavaScript
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```