https://github.com/yevhenns/pizza-nest
Deployed on Render for free, so please wait a bit to get the Swagger documentation:
https://github.com/yevhenns/pizza-nest
docker mongodb mongoose nestjs render
Last synced: about 2 months ago
JSON representation
Deployed on Render for free, so please wait a bit to get the Swagger documentation:
- Host: GitHub
- URL: https://github.com/yevhenns/pizza-nest
- Owner: Yevhenns
- Created: 2024-08-18T12:09:17.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-02-13T15:35:59.000Z (3 months ago)
- Last Synced: 2025-02-13T15:39:06.951Z (3 months ago)
- Topics: docker, mongodb, mongoose, nestjs, render
- Language: TypeScript
- Homepage: https://pizza-nest.onrender.com/api
- Size: 289 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Description
Backend for Nostra Pizza with email order confirmations. Orders are sent to the owner's Gmail account. MongoDB stores products and orders from authenticated users. The backend is documented with Swagger for easy API interaction. It’s optimized for scalability and performance, supporting multiple devices and ensuring smooth operation for both users and administrators.
## Installation
```bash
npm install
```## Running the app
Copy .env.example, rename it to .env and fill the environment variables.
development
```bash
npm run start
```watch mode
```bash
npm run start:dev
```production mode
```bash
npm run start:prod
```with Docker
```bash
docker compose up --build
```Open [localhost 3000/api](http://localhost:3000/api)