Updated the MD file as well, adding a small guide to setup the lua.sh using docker.
⚡ Quick Start
| Step |
Command |
| Clone the repo |
git clone https://github.com/luadotsh/lua.git && cd lua.sh |
| Copy env file |
cp .env.example .env and update the .env |
| Install PHP deps |
composer install (or Sail Composer) |
| Start Docker |
docker compose -f docker-compose.yml up -d --build |
| Laravel setup |
./vendor/bin/sail artisan key:generate && ./vendor/bin/sail artisan migrate --seed && ./vendor/bin/sail artisan storage:link |
| Frontend setup |
./vendor/bin/sail npm ci && ./vendor/bin/sail npm i -D tailwindcss@^3 postcss@^8 autoprefixer@^10 && ./vendor/bin/sail npm run dev |
| Access app |
http://localhost |