Covid Questionnaire is a multiple page form where you enter your covid related information as well as you preferences about work and all the data will finally be submitted to us.
Vue 3 - Vue 3.
VueX - state management pattern + library used in our app.
Tailwind CSS - css framework used in our app
1. First of all you need to clone Covid-questionnaire repository from github:
git clone https://github.com/RedberryInternship/covid-questionary-giorgi-pantsulaia.git2. Next step requires you to run npm install in order to install all the JS dependencies.
npm installYou must create .vscode/settings.json file in project's root directory and paste these rules:
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
}You can run Laravel's built-in development server by executing:
4.Next you can run npm run serve, which compiles and hot-reloads for development
npm run serve