https://github.com/winverse/fastify-testing
https://github.com/winverse/fastify-testing
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/winverse/fastify-testing
- Owner: winverse
- Created: 2023-05-23T14:44:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-29T13:48:32.000Z (almost 2 years ago)
- Last Synced: 2025-02-05T11:47:53.412Z (4 months ago)
- Language: TypeScript
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```