Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fadhiilrachman/menfess-js
menfess API
https://github.com/fadhiilrachman/menfess-js
docker nestjs postgresql redis
Last synced: about 2 months ago
JSON representation
menfess API
- Host: GitHub
- URL: https://github.com/fadhiilrachman/menfess-js
- Owner: fadhiilrachman
- License: apache-2.0
- Created: 2023-07-27T12:46:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-28T14:45:25.000Z (over 1 year ago)
- Last Synced: 2024-04-19T12:36:47.802Z (9 months ago)
- Topics: docker, nestjs, postgresql, redis
- Language: TypeScript
- Homepage: https://menfess.app
- Size: 302 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# menfess-js
Menfess.app API
## Table of Contents
- [Quick run](#quick-run)
- [Database utils](#database-utils)
- [Links](#links)
- [Tests](#tests)## Quick run
```bash
git clone https://github.com/fadhiilrachman/menfess-js.git
code menfess-js
cp env-example .env
docker compose up -d
```For check status run
```bash
docker compose logs
```## Database utils
Generate migration
```bash
npx run migration:generate -- src/database/migrations/CreateNameTable
```Run migration
```bash
npx run migration:run
```Revert migration
```bash
npx run migration:revert
```Drop all tables in database
```bash
npx run schema:drop
```Run seed
```bash
npx run seed:run
```## Links
- Swagger:
## Tests
```bash
# unit tests
npm run test