Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Before diving into making local development changes, there're some to-do's to ge

1. Clone the repository
2. Get the repo dependencies with `composer install`
3. And, just in case you ever find an error about files not being available, you might be able to fix this with providing the proper permission to the box package used by Laravel Zero framework: `chmod 755 vendor/laravel-zero/framework/bin/box`.
3. If you run into any issues, find the `Getting Pass Hurdles` section below for common solutions

Then, yes. After set up, you can make your changes!

Expand All @@ -111,6 +111,16 @@ Simply run the build command:
```
php dockerfile-laravel app:build
```

### Getting Pass Hurdles

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Getting Past"

Below are some common problems with local set up and building

#### Files Not available
If you ever find an error about files not being available, you might be able to fix this with providing the proper permission to the box package used by Laravel Zero framework: `chmod 755 vendor/laravel-zero/framework/bin/box`.

#### Build Compile Error
If your build runs into a compile error, try upgrading to the next Laravel Zero Version, see [upgrade guide](https://laravel-zero.com/docs/upgrade#upgrade-11.0.0).

#### Build View Changes
If changes were made in any of the view files, make sure to clear the cached views( For now, this can be done by manually deleting the cached files ). The path to where the views' caches are stored is configured in `config/view.php`.

Expand Down
Binary file modified builds/dockerfile-laravel
Binary file not shown.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"laravel/pint": "^1.13",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.22",
"illuminate/view": "^10.0",
"laravel-zero/framework": "^10.2",
"illuminate/view": "^11.0",
"laravel-zero/framework": "^11.0",
"phpspec/php-diff": "^1.1",
"nunomaduro/termwind": "^1.15.1"
"nunomaduro/termwind": "^2.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading
Loading