-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0abf102
commit c85f04f
Showing
7 changed files
with
29 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
version: '3.8' | ||
|
||
services: | ||
cache: | ||
redis: | ||
image: redis:6.2-alpine | ||
restart: always | ||
ports: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<div wire:key="{{$project->id}}" class="p-5 border-4 rounded-lg border-blue-900 m-3"> | ||
<div wire:key="{{$project->id}}" class="p-5 m-3 prose border-4 border-blue-900 rounded-lg"> | ||
|
||
<a href="/projects/{{ $project->id }}" class="btn btn-info delete-header m-1 btn-sm" title="Show User"> | ||
<a href="/projects/{{ $project->id }}" class="m-1 btn btn-info delete-header btn-sm" title="Show User"> | ||
{{$project->organisation_name}} | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
@echo off | ||
|
||
REM Install composer dependencies | ||
composer install --ignore-platform-req=ext-fileinfo | ||
rem install composer dependencies | ||
call composer install | ||
|
||
REM Rename .env.example to .env | ||
ren .env.example .env | ||
rem rename .env.example .env | ||
copy .env.example .env | ||
|
||
REM Install node dependencies | ||
npm install | ||
|
||
REM Generate application key | ||
rem generate application key | ||
php artisan key:generate | ||
|
||
REM Drop and create tables | ||
rem start redis | ||
docker-compose -f redis.yml up -d | ||
|
||
rem start postgres | ||
docker-compose -f postgres.yml up -d | ||
|
||
rem drop create tables | ||
php artisan migrate:fresh | ||
|
||
REM Start Vite dev-server | ||
npm run dev | ||
rem install node dependencies | ||
call npm install | ||
|
||
rem start vite dev-server | ||
start npm run dev | ||
|
||
rem start laravel dev-server | ||
start php artisan serve |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters