This commit is contained in:
Andras Bacsai 2023-06-19 11:15:46 +02:00
parent b94a50e720
commit 42504f0936
6 changed files with 20 additions and 10 deletions

View File

@ -2,7 +2,7 @@ name: Production Build (v4)
on:
push:
branches: ["v4", "v4-next"]
branches: ["main", "v4", "next"]
env:
REGISTRY: ghcr.io

View File

@ -1,12 +1,20 @@
# Coolify
# Coolify v4 Beta
An open-source & self-hostable Heroku / Netlify alternative.
# v4
# Beta
You are checking the next-gen of Coolify here, aka v4. Hi 👋
You are checking the next-gen of Coolify, aka v4. Hi 👋
Thinks will be added here incrementally through PR's.
It is still in beta, lots of improvements will come every day. Things could break, but we are working hard to make it stable as soon as possible. If you find any bugs, please report them.
Automatic updates are available, so you will receive the latest version as soon as it is released.
If you are looking for v3, check out the [v3 branch](https://github.com/coollabsio/coolify/tree/v3).
## What's new?
Well, the whole tech stack changed, core is different, so yeah, a lot.
# Installation
@ -14,10 +22,12 @@ # Installation
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
```
You can find the installation script [here](./scripts/install.sh).
## Support
- Mastodon: [@andrasbacsai@fosstodon.org](https://fosstodon.org/@andrasbacsai)
- Twitter: [@heyandras](https://twitter.com/heyandras)
- Mastodon: [@andrasbacsai@fosstodon.org](https://fosstodon.org/@andrasbacsai)
- Email: [andras@coollabs.io](mailto:andras@coollabs.io)
- Discord: [Invitation](https://coollabs.io/discord)
- Telegram: [@andrasbacsai](https://t.me/andrasbacsai)

View File

@ -1,3 +1,3 @@
<?php
return '4.0.0-nightly.25';
return '4.0.0-nightly.26';

View File

@ -17,7 +17,7 @@ .main {
input {
@apply input input-sm h-7 outline-none placeholder:text-neutral-700 text-white rounded bg-coolgray-200 w-full read-only:bg-coolgray-200/50 read-only:text-opacity-25;
}
:not(input[type="checkbox"]) {
input:not(input[type="checkbox"]) {
@apply border-none disabled:border-none;
}
input[type="checkbox"] {

View File

@ -98,7 +98,7 @@
Route::middleware(['auth'])->group(function () {
Route::get('/private-keys', fn () => view('private-key.all', [
'privateKeys' => PrivateKey::ownedByCurrentTeam(['name', 'uuid', 'is_git_related'])->where('is_git_related', false)->get()
'privateKeys' => PrivateKey::ownedByCurrentTeam(['name', 'uuid', 'is_git_related'])->where('is_git_related', true)->get()
]))->name('private-key.all');
Route::get('/private-key/new', fn () => view('private-key.new'))->name('private-key.new');
Route::get('/private-key/{private_key_uuid}', fn () => view('private-key.show', [

View File

@ -4,7 +4,7 @@
"version": "3.12.32"
},
"v4": {
"version": "4.0.0-nightly.25"
"version": "4.0.0-nightly.26"
}
}
}