https://github.com/giddyeffects/task_manager
The Task Manager system will enable efficient follow up to created and assigned tasks
https://github.com/giddyeffects/task_manager
Last synced: about 2 months ago
JSON representation
The Task Manager system will enable efficient follow up to created and assigned tasks
- Host: GitHub
- URL: https://github.com/giddyeffects/task_manager
- Owner: giddyeffects
- Created: 2017-07-28T09:21:26.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-29T22:44:10.000Z (over 7 years ago)
- Last Synced: 2025-04-13T09:12:12.176Z (about 2 months ago)
- Language: PHP
- Size: 912 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## About Task Manager
The Task Manager system (work in progress) will enable efficient follow up to created and assigned tasks
## Server Setup
- Provision the server using the Laravel provisioning(https://github.com/laravel/settler/blob/master/scripts/provision.sh) script.
- If you are using Laravel Homestead for development you can copy config files from your local machine to the server then make relevent changes e.g. Change the vagrant user to your server user etc
- Else setup PHP7, Nginx, MySQL on your server.## Installation
1. Clone the repository to ``
`git clone https://github.com/giddyeffects/task_manager.git `
2. Change directory to and Install PHP dependencies
`composer install`3. Create .env file and fill in your database details and other details as necessary. There is an example available that you can modify.
4. Create and seed your database
`php artisan migrate --seed`5. Install Javascript dependencies
`npm install`6. Create vendor configs (if not created yet)
`php artisan vendor:publish`7. Delete the .git directory.