Skip to content

Commit

Permalink
improve local dev + contribution guide
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Dec 13, 2023
1 parent f3b04c1 commit 00d7086
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 28 deletions.
6 changes: 4 additions & 2 deletions CONTRIBUTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ You can ask for guidance anytime on our
- Run `spin up` - You can notice that errors will be thrown. Don't worry.
- If you see weird permission errors, especially on Mac, run `sudo spin up` instead.

- Run `./scripts/run setup:dev` - This will generate a secret key for you, delete any existing database layouts, migrate database to the new layout, and seed your database.
If you are running Coolify for the first time:
- Run `./scripts/run dev:init` - This will delete any existing database layouts, migrate database to the new layout, and seed your database.

> If you see the login page with a 404 error, you forgot to run `./scripts/run dev:init`.
### 4) Start development
You can login your Coolify instance at `localhost:8000` with `[email protected]` and `password`.
Expand All @@ -31,7 +34,6 @@ Your horizon (Laravel scheduler): `localhost:8000/horizon` - Only reachable if y

Mails are caught by Mailpit: `localhost:8025`


## New Service Contribution
Check out the docs [here](https://coolify.io/docs/how-to-add-a-service).

8 changes: 7 additions & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ services:
ports:
- "${FORWARD_SOKETI_PORT:-6001}:6001"
environment:
SOKETI_DEBUG: "true"
SOKETI_DEBUG: "false"
SOKETI_DEFAULT_APP_ID: "${PUSHER_APP_ID:-coolify}"
SOKETI_DEFAULT_APP_KEY: "${PUSHER_APP_KEY:-coolify}"
SOKETI_DEFAULT_APP_SECRET: "${PUSHER_APP_SECRET:-coolify}"
Expand Down Expand Up @@ -115,3 +115,9 @@ volumes:
coolify-pg-data-dev:
coolify-redis-data-dev:
coolify-minio-data-dev:

networks:
coolify:
name: coolify
driver: bridge
external: false
2 changes: 1 addition & 1 deletion docker/dev-ssu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM serversideup/php:8.2-fpm-nginx

ARG TARGETPLATFORM
# https://github.com/cloudflare/cloudflared/releases
ARG CLOUDFLARED_VERSION=2023.8.2
ARG CLOUDFLARED_VERSION=2023.10.0

ARG POSTGRES_VERSION=15
RUN apt-get update
Expand Down
Empty file.
1 change: 1 addition & 0 deletions docker/dev-ssu/etc/s6-overlay/s6-rc.d/init-setup/type
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
oneshot
4 changes: 4 additions & 0 deletions docker/dev-ssu/etc/s6-overlay/s6-rc.d/init-setup/up
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/command/execlineb -P
foreground { composer -d /var/www/html/ install }
foreground { php /var/www/html/artisan key:generate }
foreground { php /var/www/html/artisan migrate --step }
Empty file.
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion docker/prod-ssu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ FROM serversideup/php:8.2-fpm-nginx

ARG TARGETPLATFORM
# https://github.com/cloudflare/cloudflared/releases
ARG CLOUDFLARED_VERSION=2023.8.2
ARG CLOUDFLARED_VERSION=2023.10.0
ARG POSTGRES_VERSION=15

WORKDIR /var/www/html
Expand Down
26 changes: 13 additions & 13 deletions resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ class="text-xs text-center text-white normal-case bg-transparent border-none rou
<form action="/login" method="POST" class="flex flex-col gap-2">
@csrf
@env('local')
<x-forms.input value="[email protected]" type="email" name="email" required
label="{{ __('input.email') }}" autofocus />
<x-forms.input value="[email protected]" type="email" name="email" required
label="{{ __('input.email') }}" autofocus />

<x-forms.input value="password" type="password" name="password" required
label="{{ __('input.password') }}" />
<a href="/forgot-password" class="text-xs">
{{ __('auth.forgot_password') }}?
</a>
@else
<x-forms.input type="email" name="email" required label="{{ __('input.email') }}" autofocus />
<x-forms.input type="password" name="password" required label="{{ __('input.password') }}" />
<a href="/forgot-password" class="text-xs">
{{ __('auth.forgot_password') }}?
</a>
<x-forms.input value="password" type="password" name="password" required
label="{{ __('input.password') }}" />
<a href="/forgot-password" class="text-xs">
{{ __('auth.forgot_password') }}?
</a>
@else
<x-forms.input type="email" name="email" required label="{{ __('input.email') }}" autofocus />
<x-forms.input type="password" name="password" required label="{{ __('input.password') }}" />
<a href="/forgot-password" class="text-xs">
{{ __('auth.forgot_password') }}?
</a>
@endenv
<x-forms.button type="submit">{{ __('auth.login') }}</x-forms.button>
@if (!$is_registration_enabled)
Expand Down
11 changes: 6 additions & 5 deletions resources/views/components/forms/input.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,19 @@ class="absolute inset-y-0 right-0 flex items-center pr-2 cursor-pointer hover:te
</svg>
</div>
@endif
<input {{ $attributes->merge(['class' => $defaultClass . ' pl-10']) }} @required($required)
<input value="{{ $value }}" {{ $attributes->merge(['class' => $defaultClass . ' pl-10']) }} @required($required)
wire:model={{ $id }} wire:dirty.class.remove='text-white' wire:dirty.class="input-warning"
wire:loading.attr="disabled" type="{{ $type }}" @readonly($readonly) @disabled($disabled)
id="{{ $id }}" name="{{ $name }}" placeholder="{{ $attributes->get('placeholder') }}"
aria-placeholder="{{ $attributes->get('placeholder') }}">

</div>
@else
<input {{ $attributes->merge(['class' => $defaultClass]) }} @required($required) @readonly($readonly)
wire:model={{ $id }} wire:dirty.class.remove='text-white' wire:dirty.class="input-warning"
wire:loading.attr="disabled" type="{{ $type }}" @disabled($disabled)
id="{{ $id }}" name="{{ $name }}" placeholder="{{ $attributes->get('placeholder') }}">
<input @if($value) value="{{ $value }}" @endif {{ $attributes->merge(['class' => $defaultClass]) }} @required($required)
@readonly($readonly) wire:model={{ $id }} wire:dirty.class.remove='text-white'
wire:dirty.class="input-warning" wire:loading.attr="disabled" type="{{ $type }}"
@disabled($disabled) id="{{ $id }}" name="{{ $name }}"
placeholder="{{ $attributes->get('placeholder') }}">
@endif
@if (!$label && $helper)
<x-helper :helper="$helper" />
Expand Down
13 changes: 8 additions & 5 deletions scripts/run
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ function help {
compgen -A function | cat -n
}

function setup:dev {
docker exec coolify bash -c "composer install"
docker exec coolify bash -c "php artisan key:generate"
docker exec coolify bash -c "php artisan migrate:fresh --seed"
function dev:init {
docker exec coolify bash -c "php artisan migrate --seed"
echo "Need to update privileges on a few files. I need your password for that."
sudo chmod -R o+rwx .
}

function sync:v3 {
if [ -z "$1" ]; then
echo -e "Please provide a version.\n\nExample: run sync:v3 3.12.32"
Expand Down Expand Up @@ -57,9 +57,12 @@ function schedule:run {
function db {
bash spin exec -u webuser coolify php artisan db
}
function db:seed {
bash spin exec -u webuser coolify php artisan migrate --seed
}

function db:migrate {
bash spin exec -u webuser coolify php artisan migrate
bash spin exec -u webuser coolify php artisan migrate --step
}

function db:reset {
Expand Down

0 comments on commit 00d7086

Please sign in to comment.