Soccer API developed during backend class @makeschool as a Custom API Project
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. Or you can interact with live version here and documentaion here
Install all dependencies
npm install
Create .env file
touch .env
Add secret key to .env
SECRET = ???
Running it on your local machine
npm run
The Soccer API is a RESTful API that stores all available soccer leagues, teams and players. I am still working on creating the database that can host all data. For the sake of testing I have added some data. The project is fully authenticated, you can create an account. In the future user can create their own fantazy team, right now I am working on how to verify user input. Check out the live deployment here.
There are three nested resources: leagues, teams, and players. The resources are one to many relationship based.For example: There are multiple leagues, one leagues has many teams, one team has many players. You can read full documentation here
- Node - JavaScript run-time environment
- Express - Web application framework
- Bootstrap - Web framework
- Npm - Dependency management
- Json Web Tokens - Encryption
- MongoDB - Document based database
- Sukhrobjon Golibboev - Initial work - Sukhrobjon
See also the list of contributors who participated in this project.
This project is licenced under the MIT License - see the LICENSE file for details
- Thanks to Blackrock Digital for the styling template.
- Thanks to Backend Intructor - Dani
- Thanks to Connor - Coswold