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

https://github.com/9d4/ladoosingh-api

Ladoosingh: The request inspector API.
https://github.com/9d4/ladoosingh-api

Last synced: about 1 year ago
JSON representation

Ladoosingh: The request inspector API.

Awesome Lists containing this project

README

          

# ladoosingh-api

Ladoosingh: The request inspector.

## Development

```bash
# Install Dependencies
pnpm install # or npm install

# Copy .env.example and configure it
cp .env.example .env

# Start the web server
pnpm start # or npm start

## Sequelize command based on env
# development
pnpm sql-dev # or npm sql-dev

# test
pnpm sql-test # or npm sql-test

# production
pnpm sql-prod # or npm sql-prod

## Migration
pnpm sql-dev db:migrate
# ^^^
# change as you need
```