File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ FROM oven/bun:1.1.44-alpine AS builder
4
4
# Set working directory and copy necessary files
5
5
WORKDIR /app
6
6
7
+ COPY docs/public/llms.txt llms.txt
7
8
# Copy package files first for better caching
8
9
COPY package.json bun.lockb ./
9
10
Original file line number Diff line number Diff line change @@ -275,9 +275,9 @@ stdout_logfile=/var/log/worker-inertia-ssr.log
275
275
276
276
1 . Create a new resource from a private or public repository.
277
277
2 . Set the ` Ports Exposes ` field to ` 8000 ` , for exemple.
278
- 3 . Set default environnement variables using ` Developer view ` in ` Environment Variables ` :
278
+ 3 . Set default environnement variables using ` Developer view ` in ` Environment Variables ` :
279
279
280
- ``` Environnement variables
280
+ ``` sh
281
281
APP_DEBUG=false
282
282
APP_ENV=staging
283
283
APP_KEY= # YourAppKey
@@ -337,7 +337,7 @@ CMD ["unitd", "--no-daemon"]
337
337
338
338
3 . Create a ` unit.json ` file (lowercase) at the root of your project with the following content:
339
339
340
- ``` unit. json
340
+ ``` json
341
341
{
342
342
"listeners" : {
343
343
"*:8000" : {
@@ -368,8 +368,8 @@ CMD ["unitd", "--no-daemon"]
368
368
}
369
369
}
370
370
```
371
- 4 . Set Post-deployment to :
372
- ```
373
- php artisan optimize:clear && php artisan config:clear && php artisan route:clear && php artisan view:clear && php artisan optimize
371
+ 4 . Set Post-deployment to:
374
372
375
-
373
+ ``` sh
374
+ php artisan optimize:clear && php artisan config:clear && php artisan route:clear && php artisan view:clear && php artisan optimize
375
+ ```
You can’t perform that action at this time.
0 commit comments