diff --git a/README.md b/README.md index 73b9a6b..95ed5c8 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,6 @@ php artisan db:seed --class=ExampleRecipesSeeder | `FORCE_HTTPS` | If your server handles SSL termination, enforce HTTPS. | 0 | | `PHP_OPCACHE_ENABLE` | Enable PHP Opcache | 0 | | `TRMNL_IMAGE_URL_TIMEOUT` | How long TRMNL waits for a response on the display endpoint. (sec) | 30 | -| `APP_TIMEZONE` | Default timezone, which will be used by the PHP date functions | UTC | #### Login diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index 07ec847..c7bca71 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -1,4 +1,4 @@ -## Local Development +### Local Development #### Requirements @@ -19,12 +19,11 @@ cp .env.example .env php artisan key:generate ``` -#### Install dependencies and Build frontend +#### Install dependencies ```bash composer install npm i -npm run build ``` #### Run migrations @@ -33,12 +32,6 @@ npm run build php artisan migrate --seed ``` -#### Link storage to expose public assets - -```bash -php artisan storage:link -``` - #### Run the server To expose the built-in server to the local network, you can run the following command: @@ -47,9 +40,7 @@ To expose the built-in server to the local network, you can run the following co php artisan serve --host=0.0.0.0 --port 4567 ``` ---- - -## Docker +### Docker Use the provided Dockerfile, or docker-compose file to run the server in a container. #### .devcontainer