Skip to content

alnahian2003/kleon

Repository files navigation

Kleon — Freelancer CRM

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

Listing of Projects Dashboard

Listing of Projects Projects

Create Project Page Create Project

Listing of Tasks Tasks

Edit Task Page Edit Task

Listing of Clients Clients

Explore this project for more!

Features

  • Login/Register as client, create and manage projects and tasks
  • Blazing fast experience, SPA like speed.
  • Free to use forever! and many more.

Installation

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.

TL;DR

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

Database Seeding (Optional)

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

Tech Stack

Client Side: TailwindCSS, Vue

Server Side: Laravel

Adapter: Inertia

Database: Sqlite 3, MySql

Note

notes

Support

For support, contact me or pull an issue. Feel free to submit PR. Cheers 🥂

About

Freelancer CRM - Using Laravel, Vue 3 & Inertia. Submission for Laravel Daily's Laravel Learning Roadmap's Upper Beginner challenge.

Topics

Resources

Stars

Watchers

Forks