Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rudickamladez/pohles-backend
REST API for Ticket reservation system based on Ts.ED framework
https://github.com/rudickamladez/pohles-backend
backend-api tsed typescript
Last synced: 3 months ago
JSON representation
REST API for Ticket reservation system based on Ts.ED framework
- Host: GitHub
- URL: https://github.com/rudickamladez/pohles-backend
- Owner: rudickamladez
- Created: 2021-08-23T18:01:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-09T13:32:00.000Z (11 months ago)
- Last Synced: 2024-03-09T14:47:16.511Z (11 months ago)
- Topics: backend-api, tsed, typescript
- Language: TypeScript
- Homepage: https://api.pohles.rudickamladez.cz
- Size: 2.23 MB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pohles-backend
> An awesome project based on Ts.ED framework
See [Ts.ED](https://tsed.io) project for more information.
## Build setup
> **Important!** Ts.ED requires Node >= 10, Express >= 4 and TypeScript >= 3.
```batch
# install dependencies
$ npm install# serve
$ npm run start# build for production
$ npm run build
$ npm run start:prod
```## Docker compose
```batch
# Copy docker compose file
cp docker-compose.sample.yml docker-compose.yml# Edit docker-compose.yml
vim docker-compose.yml# Copy mongo init file
cp mongo-init.sample.js mongo-init.js# Edit database credentials
vim mongo-init.js# Start containers
docker-compose up -d
```