A laravel app to create weighted questionaire systems
- A webserver that supports PHP (
nginx
andphp-fpm
recommended) mysql
node.js
andnpm
installed on your systemgulp
installed globally (npm install -g gulp
) or locally if you know what you're doingcomposer
, the PHP package manager
- Git clone this repo
- Set laravel/public/ as your webserver's document root
- Run
composer update --no-scripts
within the laravel folder - Run
composer install
within the laravel folder - Run
npm install
within the laravel folder - Run
php artisan migrate
within the laravel folder - Run
php artisan key:generate
within the laravel folder
- In the laravel folder, copy .env.example and rename it to .env
- Configure your database settings in the .env file
- Run
gulp
within the laravel folder
Great! Now the project is all set up. In the future, we may want to include compiled scripts and styles when we're ready for a release. This would remove the need for installing node.js, npm, and gulp.