Release 0.3.0-alpha.1 #164

Merged
Jef Roosens merged 78 commits from release-0.3.0-alpha.1 into main 2022-05-06 20:12:52 +02:00
3 changed files with 7 additions and 7 deletions
Showing only changes of commit e890128bda - Show all commits

View file

@ -5,8 +5,8 @@ import env
pub struct Config { pub struct Config {
pub: pub:
api_key string api_key string
address string address string
base_image string = 'archlinux:base-devel' base_image string = 'archlinux:base-devel'
} }

View file

@ -5,10 +5,10 @@ import env
struct Config { struct Config {
pub: pub:
log_level string = 'WARN' log_level string = 'WARN'
log_file string = 'vieter.log' log_file string = 'vieter.log'
api_key string api_key string
address string address string
base_image string = 'archlinux:base-devel' base_image string = 'archlinux:base-devel'
} }

View file

@ -26,7 +26,7 @@ fn main() {
server.cmd(), server.cmd(),
build.cmd(), build.cmd(),
git.cmd(), git.cmd(),
cron.cmd() cron.cmd(),
] ]
} }