Skip to content

ghfli/gjdev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gjdev

gym-jinni playground

Set up the development VM with Vagrant. Tested libvirt as the provider for setting up an archlinux VM on an archlinux host. See more details in the Vagrantfile and setup-alx.sh. Remember to install nfs-utils on the host to make sure the /vagrant mounted on the VM by default can be synced bidirectionally to and from the current working directory.

Test flutter + hereoku (go + postgres)

On the host:

vagrant up  # bring up the VM
vagrant ssh # login to the VM

On the VM:

cd /vagrant
flutter create hello_flutter
cd hello_flutter
flutter build web
darkhttpd build/web

Point the browser to http://localhost:8080 on the host.