This project is a simple calendar for a sports establishment to add sports activities for customers to see in an organized way.
GET - sports/activies
POST - sports/activity
- Clone this repository
https://github.com/pferreirafabricio/sport-activities.git
; - Enter in the project's folder:
cd sport-activities
- Enter in the API's folder:
cd backend
- Install dependencies:
composer install
- Run the migrations:
php artisan migrate
- Finally start the built-in PHP development server
php -S localhost:8000 -t public
😃
OBS: Remember to change the .env configurations
- Clone this repository
https://github.com/pferreirafabricio/sport-activities.git
; - Enter in the project's folder:
cd sport-activities
- Enter in the FrontEnd's folder:
cd frontend
- Install dependencies:
npm install
- Run the server:
npm run serve
- Access in your browser:
http://localhost:8080
😃
OBS: If your API is running in a different address than
http://locahost:8000
, change the baseUrl variable infrontend/src/api/index.js
- Fork this repository;
- Create a branch with your feature:
git checkout -b my-feature
- Commit your changes:
git commit -m 'feat: My new feature'
- Push your branch:
git push origin my-feature
This project is under the MIT license. Take a look at the LICENSE file for more details.