Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xeoneux/vyng-backend-challenge
Vyng Backend Challenge
https://github.com/xeoneux/vyng-backend-challenge
nestjs nodejs parcel postgresql react
Last synced: 29 days ago
JSON representation
Vyng Backend Challenge
- Host: GitHub
- URL: https://github.com/xeoneux/vyng-backend-challenge
- Owner: xeoneux
- Created: 2018-10-09T15:03:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-09T15:04:10.000Z (over 6 years ago)
- Last Synced: 2024-10-30T00:39:46.301Z (3 months ago)
- Topics: nestjs, nodejs, parcel, postgresql, react
- Language: JavaScript
- Homepage: https://vyng-backend-challenge.herokuapp.com
- Size: 260 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Vyng Backend Challenge
![App](asset/vyng-app.png "App")
Using Postgres v10.x, NodeJS LTS+, Express v4.x, and Heroku, this is a RESTful API server which allows users to do the following:
1. Create channels with a unique name
2. Get their channels
3. Create and add a video entry to a channel.### Models
Channel model includes at a minimum:
- Unique ID
- Name
- Owner referencing a user idVideo model includes at a minimum:
- Unique ID
- URL
- Channel referencing a channel idUser model includes at a minimum:
- Unique ID
- NameThe app is hosted on Heroku at https://vyng-backend-challenge.herokuapp.com
Swagger API is available at `/api`:
![API](asset/vyng-api.png "API")