Music Teachers Aid is a web application for private / independent music teachers.
- Studio information
- Business hours
- Schedule students
- Payment tracking
- Professional invoices
- Email reminders
PHP 8.2
Composer 2
Laravel 10
MariaDB 10.6.18 | MySQL | SQLite
NodeJS 14.21.3
NPM 9.7.1
Clone the repository
git clone https://github.com/waltprorok/mta_v3
Switch to the repo folder
cd mta_v3
Install all the dependencies using composer
composer install
Copy the example env file and make the required configuration changes in the .env file
cp .env.example .env
Generate a new application key
php artisan key:generate
Create the symlink for media
php artisan storage:link
Install and build node dependencies
npm install
npm run dev
Run the database migrations (Set the database connection in .env before migrating)
php artisan migrate
Database seeding
php artisan db:seed
Start the local development server
php artisan serve
You can now access the server at http://localhost:8000