-
Notifications
You must be signed in to change notification settings - Fork 6
Getting Started
johnenrick edited this page Apr 28, 2017
·
1 revision
Before you start, please read Prerequisite to lessen the brain damage
Project Folder - refers to the project folder where the source code is placed. e.g godigit
- MySQL + Phpmyadmin, it doesnt have to be xampp
- Able to install Laravel 5. Refer to this Guide
- Node Package Manager (npm). Refer to this Guide
- Able to install Vue-webpack. Refer to this Guide
Fork the project instead of cloning in order to make a pull request. Then follow the steps below:
- go to projectFolder/api
- run command:
composer install - run command:
composer update - open phpmyadmin and create the database.
- edit
.envand configure the database name, user, and password.
Note: Do not change app/config/database - run command
php artisan key:generate - run command:
php artisan migrate - run command:
php artisan db:seed - run command:
php artisan serve - visit
localhost:8080if you see laravel homepage everything is fine - go back to root folder
- run command:
npm install - run command:
npm update - run command:
npm run dev - Visit
localhost:8080, if you see the log in page ang no error in console, your done
Before you start coding be sure to understand the Conceptual Framework
After you understand the concept, orient yourself with the File Structure
Lastly order coffee or frappe
To start creating an API refer to API Development
To start developing in front end refer to Front End Development