https://github.com/dammy001/mono-account-service
https://github.com/dammy001/mono-account-service
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dammy001/mono-account-service
- Owner: dammy001
- Created: 2021-11-18T18:32:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-17T21:20:32.000Z (about 1 year ago)
- Last Synced: 2024-05-17T22:28:05.137Z (about 1 year ago)
- Language: TypeScript
- Size: 964 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
## Description
Mono Expense Service
## Installation
```bash
$ npm install -g pnpm
``````bash
$ pnpm install
```
## Running the app```bash
# Copy enviroment variables
$ cp .env.example .env.development.local# development
$ pnpm run start# watch mode
$ pnpm run start:dev# production mode
$ pnpm run start:prod
```## Configuration
```bash
JWT_SECRET="secret"
EXPIRES="2d"# This project makes use of mysql
DB_HOST=
DB_PORT=
DB_USERNAME=
DB_PASSWORD=
DB_DATABASE=
```## Test
```bash
# unit tests
$ pnpm run test# e2e tests
$ pnpm run test:e2e# test coverage
$ pnpm run test:cov
```