Kleon is a Laravel, Vue and InertiaJS powered Freelancer CRM. Here's my submission for Laravel Daily's Laravel Learning Roadmap Upper Beginner level challenge.
Screenshots
Explore this project for more!
- Login/Register as client, create and manage projects and tasks
- Blazing fast experience, SPA like speed.
- Free to use forever! and many more.
Please check the Laravel Official Documentation installation guide for server requirements before you start.
First, clone this repo
git clone https://github.com/alnahian2003/kleon.git
Switch to the repo folder
cd kleon
Install all the dependencies using composer and npm
composer install
npm install
Copy the .env.example
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 an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
touch database/database.sqlite
Run the database migrations (Set the database connection in .env before migrating)
php artisan migrate --seed
Start the local development server
php artisan serve
Start Vite for bundling the assets or Hot Module Reload (required)
npm run dev
You can now access the server at http://localhost:8000.
All the command list
git clone https://github.com/alnahian2003/kleon.git
cd kleon
composer install
npm install
cp .env.example .env
php artisan key:generate
touch database/database.sqlite
php artisan migrate --seed
php artisan serve
npm run dev
Populate the database with seed data that includes relationships. This can help you to quickly get started and explore inside & out of this project.
Run the database seeder, and this will do it!
php artisan db:seed
Note : It's recommended to have a clean database before seeding. You can refresh your migrations at any point to clean the database by running the following command
php artisan migrate:refresh
Client Side: TailwindCSS, Vue
Server Side: Laravel
Adapter: Inertia
Database: Sqlite 3, MySql
notes
For support, contact me or pull an issue. Feel free to submit PR. Cheers 🥂