The repository forms the backend in form of a RESTful API for the Eurystheus project.
- #1 Authentication via JWT
- Handle projects
How to install this RESTful API?
- Clone the GitHub Repository :
git clone https://github.com/Timoteus3000/eurystheus-rest-api
- Or download the ZIP-File
- Choose a branch you want to use:
master
: is always stabledevelop
: current branch that is being worked on
- Go into your database:
- Create a new database with:
CREATE DATABASE db_Eurystheus;
- Create a new database with:
- Go into the current project folder:
- Migrate the Database with:
php artisan migrate
- Migrate the Database with:
- Serve the RESTful-API with:
php artisan serve
- Now you're done!