diff --git a/.gitignore b/.gitignore index 7361038f..f1a5c7b0 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ rida.db server.crt server.key +.vagrant +.idea diff --git a/README.rst b/README.rst index 2f7c33cf..ad0735f4 100644 --- a/README.rst +++ b/README.rst @@ -137,8 +137,8 @@ _`Module Build States` You can see the list of possible states with:: - import rida - print(rida.BUILD_STATES) + from rida.models import BUILD_STATES + print(BUILD_STATES) Here's a description of what each of them means: diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 00000000..b610908c --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,19 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +$script = <