Skip to content

Latest commit

 

History

History
96 lines (69 loc) · 1.35 KB

README_DEV.md

File metadata and controls

96 lines (69 loc) · 1.35 KB

Laravel 11 vue 3.4 Starter

Pobierz z githuba.

Vue

Zainstaluj node.js

Instalacja

npm install
npm install axios
npm install vue@latest
npm install --save-dev @vitejs/plugin-vue
npm install vue-router@4
npm install pinia
npm install vue-i18n@9
npm install @googlemaps/js-api-loader
npm install @highlightjs/vue-plugin

Kompilacja

npm run build

Laravel

Zainstaluj composer

App composer.json

Gdy wyskakuje ostrzeżenie composera dodaj numer wersji.

{
    "version": "1.0",
}

Aktualizacja

composer clear-cache
composer update
composer dump-autoload -o

Bazy danych, tabelki

php artisan make:session-table
php artisan notifications:table

php artisan migrate
php artisan migrate:fresh
php artisan migrate:fresh --env=testing

Dowiązanie public/storage

php artisan storage:link

Uruchom

php artisan serve
php artisan serve --host=localhost --port=8000

Inne opcje

# Tłumaczenia
php artisan lang:publish

# Strony błędów
php artisan vendor:publish --tag=laravel-errors

# Cors config
php artisan config:publish cors

Contributing example

Fork it
Create your feature branch (git checkout -b my-new-feature)
Commit your changes (git commit -am 'Add some feature')
Push to the branch (git push origin my-new-feature)
Create new Pull Request