Laravel 11 + Vue.js + Tailwind
This project is a web-based survey application built with Laravel 11 + Vue.js + Tailwind. It allows you to create, manage, and distribute surveys for people to answer. Additionally, this project integrates with Jira to streamline issue tracking and project management.
-
front end : Vue.js + Tailwind
-
laravel testing
To build and run this project, follow the steps below:
-
Install all the libraries or packages:
composer install
-
Set up your environment variables:
-
Copy the
.env.example
file to.env
:cp .env.example .env
-
Configure your database connection in the
.env
file:DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=your_database_name DB_USERNAME=your_database_user DB_PASSWORD=your_database_password
-
-
Run database migrations:
-
Migrate the database to set up the necessary tables:
php artisan migrate
-
-
Serve the application:
-
Start the Laravel development server:
php artisan serve
-
-
Create a symbolic link for storage:
-
This command will create a symbolic link from
public/storage
tostorage/app/public
, making your files accessible from the web:php artisan storage:link
-