Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 1.15 KB

README.md

File metadata and controls

54 lines (34 loc) · 1.15 KB

Getting Started

Installation

Ensure you have the following installed:

Then run the following script which will install php and quasar dependencies.

./scripts/install.sh

Development

It's recommended to use Visual Studio Code as your IDE.

To start the frontend development server, run the following script or run "Run" task in VSCode.

./scripts/run.sh

To build the frontend, run the following script or run "Build" task in VSCode.

./scripts/build.sh

To clean the frontend build, run the following script or run "Clean" task in VSCode.

./scripts/clean.sh

Fake data

To generate fake data, run the following script.

php artisan db:seed

Project Structure

The project is split into two parts: backend and frontend.

The backend is located in the root directory.

The frontend is located in the resources/js/quasar directory.