This is a full stack application that makes it possible to perform and create surveys with the display of relevant statistics. While building this app, I created a REST API in Laravel with authentication, configured a Vue project, integrated Tailwind.css
- Clone the project
- Go to the project root directory
- Run
composer install
- Create database
- Copy
.env.example
into.env
file and adjust parameters - Run
php artisan serve
to start the project at http://localhost:8000
- Navigate to
vue
folder using terminal - Run
npm install
to install vue.js project dependencies - Copy
vue/.env.example
intovue/.env
and specify API URL - Start frontend by running
npm run dev
- Open http://localhost:3000