A Laravel web application that will test your intellectual prowess. It allows user to create accounts and post their own quizzes which can be also taken by other users.
- Clone the repository.
git clone https://github.com/psub-bsit3a-ccit106-2023/auth-part2-final-group-1.git
- Install the vendor files needed to run the application.
composer install
- Download the node modules.
npm install
-
Copy the .env.example to the same directory and rename it to .env.
-
For cmd, use:
copy .env.example .env
-
For git bash, use:
cp .env.example .env
-
-
Generate the key for the laravel web application.
php artisan key:generate
- Run the dev script in package.json.
npm run dev
- Run the QuizWhiz by entering the command:
php artisan serve
You can now visit the application in http://localhost:8000.