https://github.com/tericcabrel/throner-api
REST API with Node.js and MongoDB to manage data for Throner project
https://github.com/tericcabrel/throner-api
express mongodb mongoose nodejs rest-api
Last synced: 3 months ago
JSON representation
REST API with Node.js and MongoDB to manage data for Throner project
- Host: GitHub
- URL: https://github.com/tericcabrel/throner-api
- Owner: tericcabrel
- Created: 2020-02-26T17:09:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-17T19:42:58.000Z (about 2 years ago)
- Last Synced: 2026-01-03T19:27:57.313Z (6 months ago)
- Topics: express, mongodb, mongoose, nodejs, rest-api
- Language: JavaScript
- Size: 604 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Throner API
REST API with Node.js and MongoDB to manage data for Throner project
### Description
It's expose CRUD endpoints for the following resources:
* **Pictures:** Store pictures taken with the camera of the drone and give the ability to retrieve them
* **Position** Receive drone position periodically and store in the database. We will retrieve them after to display the path on Google Maps
* **Settings:** Save drone configuration like Stream URL who contains the URL to stream camera of the drone through the web
### Installation
```
git clone https://github.com/tericcabrel/throner-api.git
yarn install
cp .env.example .env
nano .env
```
### Start the server
```
yarn start
```
The server will run on port 5991. You can change this by editing `.env` file.
### Project
To view all the repositories involved on this project, follow the link below
[View Throner project](https://github.com/tericcabrel/throner)