Edison is an open-source home management system.
In its core, Edison is a regular automatic home management system: it reads data from humidity and light sensors and decides when to turn on the air condition and turn on the lights in different rooms.
Edison allows users to write their own house management plans.
Users can share their management plans through the Edison network and users can also download and review plans from other users.
Edison can also manage different sensors from different rooms with different management plans for each room.
Edison makes the initial setup easy for you by including a provisioner file that runs automatically on vagrant up
.
You will have a fully ready-to-go work environment with a single command.
- Download the proper VirtualBox and Vagrant package for your operating system and architecture.
- Download Edison to your machine and then open a console window on edison folder.
- Write
vagrant up
and press enter. - That's it! Your virtual machine is up and running.
You can enter your virtual machine withvagrant ssh
.
Important! In case that, after
vagrant ssh
, your virtual machine asks for a password the default password isvagrant
.
In order for your next vagrant up
to execute quicker you should save your virtual machine state into a box file format.
- If you are inside the virtual machine write
exit
and press enter. Now you are back on your host command line. - Write
vagrant halt
and press enter.
Note: It will shut down the running machine Vagrant is managing.
- Write
vagrant package --output box-name.box
and press enter. You can replace box-name with any name you want.
Note: It will output your virtual machine into a box file format with .box extension.
- Write
vagrant box add box-name box-name.box
and press enter.
Make sure you replaced box-name with the name you have chosen on the previous step. - Edit Vagrantfile inside the edison folder.
Change the following lineconfig.vm.box = "ubuntu/xenial64"
toconfig.vm.box = "box-name"
(replace box-name with the name of the box you have created). - Run
vagrant up --no-provision
on future spins.
- If you are inside your virtual machine execute the
exit
command so you would get back to your host command line. - Write
vagrant destroy -f
and press enter. It sould terminate your virtual machine.
Important! If you have some unsaved work on your virtual machine your data will be lost! In order to save your data you should follow the steps we provided on How to save virtual machine state.
Here are some answers to some frequently asked questions:
Why does vagrant up
take so long ?
If you don't have a box to spin your environment from, vagrant up
will take longer to be done.
As part of this command execution our included file setup.sh
starts to execute and configure Edison environment inside the virtual machine. It downloads all the dependencies Edison requires to run.
What is box file format ?
Please read box file format documentation for more information.