Skip to content

Instantly share code, notes, and snippets.

@viniciusvts
Last active May 27, 2022 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viniciusvts/4c297c63a53fc15c3373798d7a31b4cd to your computer and use it in GitHub Desktop.
Save viniciusvts/4c297c63a53fc15c3373798d7a31b4cd to your computer and use it in GitHub Desktop.
Laravel 8 my project instalation

Install laravel

composer create-project laravel/laravel:^8.0 example-app-name
cd example-app-name

Start git flow

git flow init
git remote add origin http://repository.url.git
git push -u origin master
git push -u origin develop

Commit laravel project

  • Edit the Read-me
  • normaly commit it

OCI8 support (oracle BD)

composer require yajra/laravel-oci8:^8
  • Add in .env file database configurations
DB_CONNECTION=oracle
DB_HOST=
DB_PORT=
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=

larecipe install

composer require binarytorch/larecipe
php artisan larecipe:install
  • Edit config/larecipe.php
    • ui.colors.primary
    • ui.colors.secondary
  • Edit resources/docs
  • In resources/views/vendor/larecipe/partials/nav.blade.php comment the saleem-hadad github url
  • Write svg logo in resources/views/vendor/larecipe/partials/logo.blade.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment