This is a demo application showing how to build a simple project management software using Laravel and Vue.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
What things you need to install the software.
- Git.
- PHP.
- Composer.
- Laravel CLI.
- A webserver like Nginx or Apache.
- A Node Package Manager ( npm or yarn ).
Clone the git repository on your computer
$ git clone https://github.com/sahimsakir/project-management-system.git
You can also download the entire repository as a zip file and unpack in on your computer if you do not have git
After cloning the application, you need to install it's dependencies.
$ cd project-management-system
$ composer install
- When you are done with installation, copy the
.env.examplefile to.env
$ cp .env.example .env
- Generate the application key
$ php artisan key:generate
-
Add your database credentials to the necessary
envfields -
Migrate the application
$ php artisan migrate
- Seed Database
php artisan db:seed
- Install Passport
$ php artisan passport:install
- Install node modules
$ npm install && npm run dev
$ php artisan serve