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.gitSwitch to the repo folder
cd kleonInstall all the dependencies using composer and npm
composer installnpm installCopy the .env.example file and make the required configuration changes in the .env file
cp .env.example .envGenerate a new application key
php artisan key:generateCreate an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
touch database/database.sqliteRun the database migrations (Set the database connection in .env before migrating)
php artisan migrate --seedStart the local development server
php artisan serveStart Vite for bundling the assets or Hot Module Reload (required)
npm run devYou can now access the server at http://localhost:8000.
All the command list
git clone https://github.com/alnahian2003/kleon.gitcd kleoncomposer installnpm installcp .env.example .envphp artisan key:generatetouch database/database.sqlitephp artisan migrate --seedphp artisan servenpm run devPopulate 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:seedNote : 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:refreshClient 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 🥂