Gym Management Software is a web application for managing a gym. It includes features for managing members, attendance, payments, and more.
To run this project on your local machine, follow these steps:
-
Clone the repository:
git clone https://github.com/edureef/Gold-Gym-Management-Software.git
-
Navigate to the project directory:
cd Gold-Gym-Management-Software -
Install PHP dependencies:
composer install
-
Install JavaScript dependencies:
npm install
-
Create a copy of the
.env.examplefile:cp .env.example .env
-
Generate an application key:
php artisan key:generate
-
Configure your database in the
.envfile. -
Run the database migrations:
php artisan migrate
-
Seed the Database Populate the database with initial data, including a default admin user.
php artisan db:seed
-
Run the development server:
php artisan serve
-
Compile assets:
npm run dev
Now you can access the application in your web browser at http://localhost:8000.
- User Email:
admin@admin.com - Password:
12345678
You can now log in with the default admin credentials to explore the application.