v0.2.0 Coconut
This release introduces simpler Inertia installation via brew
and Heroku-style builds using Heroku buildpacks! There have also been a number of configuration file changes, so make sure you do a fresh run of inertia init
.
Features
Homebrew 🍺
- UBC Launch Pad and Inertia now has a tap on Homebrew!
$> brew tap ubclaunchpad/tap
$> brew install inertia
Deployment Improvements 🚚
- Herokuish: Initial support for Heroku buildpacks means that projects set up for Heroku can now be deployed by Inertia without any changes! Just set your
build-type
in.inertia.toml
toherokuish
to enable this functionality in case Inertia does not automatically detect this. Unfortunately, these builds are currently very, very slow, and only support one process from Procfile:web
. (#146) - docker-compose: Containers are now started up using your project name, meaning that instead of having all your container names prepended with
project_
, it will not be prepended with your project name, as it does when runningdocker-compose up
on your local machine. (@PiggySpeed)
Secret Secrets 🔐
- You are no longer restricted to the default Inertia secret (
inertia
) - when runninginertia remote add
, you will now be prompted to enter a secret to use for webhook verification. (@arjansandhu)
UI/UX improvements ✨
- Some improvements to text formatting and logging
- Removed
inertia remote status
completely - useinertia $VPS_NAME status
to check on your daemon. (@rogermyang)