This pet-project is still develops so judge gently
- Clone the repository and go to the project root.
git clone https://github.com/damirTAG/NovaBlog.git
cd NovaBlog- Start Docker containers:
docker-compose up -d --build- Install PHP dependencies (inside the app container):
docker exec -it app composer install- Copy .env file and generate app key:
cp .env.example .env
docker exec -it app php artisan key:generate- Run database migrations:
docker exec -it app php artisan migrate- Install frontend dependencies and run Vite:
npm install
npm run devApp: http://localhost
Public API Docs: http://localhost/api/documentation