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

https://github.com/winverse/fastify-testing


https://github.com/winverse/fastify-testing

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Fastify
fastify laboratory

# To-do
- [ ] Using testing library like jest or tap
- [ ] Dependency Injection

# Docker db
```sql
CREATE DATABASE winverse ENCODING 'UTF8';
CREATE USER winverse WITH ENCRYPTED PASSWORD 'winverse';
GRANT ALL PRIVILEGES ON DATABASE winverse to winverse;
ALTER USER winverse CREATEDB;
```