Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Jun 19, 2023
1 parent b94a50e commit 42504f0
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Production Build (v4)

on:
push:
branches: ["v4", "v4-next"]
branches: ["main", "v4", "next"]

env:
REGISTRY: ghcr.io
Expand Down
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
# 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

```bash
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: [[email protected]](mailto:[email protected])
- Discord: [Invitation](https://coollabs.io/discord)
- Telegram: [@andrasbacsai](https://t.me/andrasbacsai)
Expand Down
2 changes: 1 addition & 1 deletion config/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

return '4.0.0-nightly.25';
return '4.0.0-nightly.26';
2 changes: 1 addition & 1 deletion resources/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ body {
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"] {
Expand Down
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -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', [
Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "3.12.32"
},
"v4": {
"version": "4.0.0-nightly.25"
"version": "4.0.0-nightly.26"
}
}
}

0 comments on commit 42504f0

Please sign in to comment.