| Install | |
|---|---|
composer require quarc/vue-starter-kit |
|
| Latest Version: | v0.1.0 |
| PHP: | ^8.2 |
Quarc is a modern Starter Kit with a Vue.js frontend and Laravel backend for developing web applications quickly.

[!NOTE]
Before creating your first Quarc project, ensure that your local machine has PHP and Node.js installed.
You may install the starter kit via the Laravel installer:
laravel new my-app --using=quarc/vue-starter-kit
Alternatively, you may clone the repository manually:
git clone https://github.com/quarc/vue-starter-kit.git my-app
cd my-app
Once the project is installed, install the dependencies and configure the environment:
composer install
npm install
cp .env.example .env
php artisan key:generate
Quarc is configured to use SQLite by default. Ensure the database file exists and run migrations:
touch database/database.sqlite
php artisan migrate --seed
To start the development server, you may run the following command:
npm run dev
In a separate terminal, start the Laravel server:
php artisan serve
The Quarc Starter Kit is open-sourced software licensed under the MIT license.
🚧 Project under development
Designed with developers in mind.