File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ SESSION_DOMAIN=null
3636
3737BROADCAST_CONNECTION = log
3838FILESYSTEM_DISK = local
39+ FILESYSTEM_PUBLIC_DRIVER = local
3940QUEUE_CONNECTION = database
4041
4142CACHE_STORE = database
Original file line number Diff line number Diff line change 1212 install-dependencies
1313 down
1414 perform-migration
15+ optimize-cache
1516 @if (! $skipFrontend )
1617 push-frontend
1718 @endif
5556 php artisan migrate --force
5657@endtask
5758
59+ @task (' optimize-cache' , [' on' => ' server' ] )
60+ set -e
61+ cd /var/www/ComputerScienceResources.com
62+ php artisan cache:clear
63+ php artisan config:cache
64+ php artisan route:cache
65+ php artisan view:cache
66+ @endtask
67+
5868
5969{{-- ===== Frontend Tasks ===== --}}
6070@task (' build-frontend' , [' on' => ' local' ] )
Original file line number Diff line number Diff line change 3737 'throw ' => false ,
3838 ],
3939
40+ // TODO: SWITCH TO JUST PRODUCTION INSTEAD
4041 'public ' => env ('FILESYSTEM_PUBLIC_DRIVER ' , 'local ' ) === 's3 '
4142 ? [ // https://www.renick.io/en/blog/post/s3-storage-for-laravel-how-to-integrate-backblaze-b2-with-flysystem
4243 'driver ' => 's3 ' ,
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ const props = defineProps({
4646 </div >
4747 </div >
4848
49- <p class =" text-gray-700 mb-6 text-base leading-relaxed" >
49+ <p class =" text-gray-700 mb-6 text-base leading-relaxed whitespace-pre-line " >
5050 {{ props.resource.description }}
5151 </p >
5252
Original file line number Diff line number Diff line change @@ -326,7 +326,7 @@ const submit = async () => {
326326 )
327327 "
328328 class =" mt-1 block w-full"
329- :rows =" 6 "
329+ :rows =" 8 "
330330 />
331331 <InputError
332332 class =" mt-2"
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ watch(
148148 v-model =" props.formData.description"
149149 placeholder =" Describe the resource..."
150150 class =" mt-1 w-full border border-gray-300 rounded-md shadow-sm focus:border-blue-500 focus:ring focus:ring-blue-200"
151- rows =" 3 "
151+ rows =" 8 "
152152 />
153153 <PrimeVueFormError
154154 v-if =" errors.description"
You can’t perform that action at this time.
0 commit comments