Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.49 KB

README.md

File metadata and controls

47 lines (34 loc) · 1.49 KB

This is a Livewire project - TALL STACK(TailwindCSS Alpine Laravel Livewire)


For running localy you need:

I recomment using Valet if you have Linux or Mac, in case of Windows use Laragon/XAMPP.

Database is PostgreSQL.

   composer install
   npm install
   config the .env file according the .env.example and create a database for the project
   php artisan migrate

   php artisan serve(optional)

From Running in Docker

Copy the .env.example to .env

   docker-compose up -d
   docker-compose exec pg-app bash
   psql
   create database scrum_poker;
   exit
   exit
   docker-compose exec laravel-app bash
   php artisan migrate
   php artisan key:generate

Now you can hit the localhost:8080

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

License

The Laravel framework is open-sourced software licensed under the MIT license.