Feature rye (#17)

Migrate from Poetry to Rye 
Adaptat github actions 
Group build targets in makefile
This commit is contained in:
Yax 2023-11-11 19:45:35 +01:00 committed by GitHub
parent b57c4f1ae6
commit 6d53fdecac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 208 additions and 1203 deletions

14
Vagrantfile vendored Normal file
View file

@ -0,0 +1,14 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian/bullseye64"
config.vm.provider :virtualbox do |vb|
vb.memory = 1024
vb.cpus = 1
end
config.vm.define "master" do |master|
master.vm.hostname = "master"
master.vm.provision "shell", inline: <<-SHELL
mkdir /home/vagrant/stacosys
SHELL
end
end