Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/santiagodotsh/nest-teslo-shop
🛒 🐈 CRUD with NestJS, PostgreSQL, JWT auth and file uploads.
https://github.com/santiagodotsh/nest-teslo-shop
auth crud file-upload jwt nestjs postgresql typeorm websocket
Last synced: 6 days ago
JSON representation
🛒 🐈 CRUD with NestJS, PostgreSQL, JWT auth and file uploads.
- Host: GitHub
- URL: https://github.com/santiagodotsh/nest-teslo-shop
- Owner: santiagodotsh
- Created: 2024-09-08T13:13:36.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T15:31:00.000Z (2 months ago)
- Last Synced: 2024-11-10T04:07:44.578Z (about 2 months ago)
- Topics: auth, crud, file-upload, jwt, nestjs, postgresql, typeorm, websocket
- Language: TypeScript
- Homepage:
- Size: 530 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Project setup
```bash
$ npm install
```## Config environment
```bash
$ # copy .env.template to .env
```## Start database
```bash
$ docker compose up -d
```## Compile and run the project
```bash
# development
$ npm run start# watch mode
$ npm run start:dev# production mode
$ npm run start:prod
```## Run SEED
```bash
$ http://localhost:3000/api/seed
```## WebSocket connection (messages)
```bash
$ http://localhost:3000/socket.io/socket.io.js
```## Run tests
```bash
# error
```