Full-Stack project to manage gyms,track members' attendances and subscriptions.
- Clone the repository
# using SSH
git clone git@github.com:ojpro/gym-track.git
# using HTTPS
git clone https://github.com/ojpro/gym-track.git
- Setup Backend
# go to server folder
cd gym-track/server
# install composer packages
composer Install
# create an .env file
cp .env.example .env
# generate app key
php artisan key:generate
# start the server
php artisan serve
- set up the frontend (coming soon)
🚀 Now backend side is set up!.
To run tests, run the following commands
# navigate to the server directory
cd server
# start testing scripts
php artisan test