Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sherbolotarbaev/fast-api
Personal API built with Nest JS, Fastify, Prisma, Redis, PostgreSQL and Supabase.
https://github.com/sherbolotarbaev/fast-api
fastify nestjs postgresql prisma redis supabase typescript
Last synced: about 1 month ago
JSON representation
Personal API built with Nest JS, Fastify, Prisma, Redis, PostgreSQL and Supabase.
- Host: GitHub
- URL: https://github.com/sherbolotarbaev/fast-api
- Owner: sherbolotarbaev
- Created: 2024-08-19T20:27:23.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-01T17:02:06.000Z (3 months ago)
- Last Synced: 2024-09-28T10:41:57.842Z (about 2 months ago)
- Topics: fastify, nestjs, postgresql, prisma, redis, supabase, typescript
- Language: TypeScript
- Homepage:
- Size: 362 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal API ✨
- **Language:** [TypeScript](https://www.typescriptlang.org/)
- **Framework:** [NestJS](https://nestjs.com/) & [Fastify](https://fastify.dev/)
- **Deployment:** [Vercel](https://vercel.com/)
- **Database:** [PostgreSQL](https://www.postgresql.org/) & [Supabase](https://supabase.com/)
- **Cache Storage:** [Redis](https://redis.io/)## Installation
First, ensure you have [pnpm](https://pnpm.io/) installed. Then, install the project dependencies:
```bash
$ pnpm install
```## Running the app
```bash
# development
$ pnpm run start# watch mode
$ pnpm run start:dev# production mode
$ pnpm run start:prod
```## Test
```bash
# unit tests
$ pnpm run test# e2e tests
$ pnpm run test:e2e# test coverage
$ pnpm run test:cov
```