Skip to content

mdhancher/modernomad

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

manage networks of houses with members and resources.

prerequisites: pip and virtualenv.

each virtualenv contains its own install of pip, but you need pip to be installed globally in order to install virtualenv and virtualenvwrapper (or, at least, this is the easiest way to get those dependencies).

optionally remove old/crusty versions:

install virtualenv and (if you want to stay sane) virtualenvwrapper:

  • sudo pip install virtualenv (harmless if virtualenv is already installed)
  • sudo pip install virtualenvwrapper add to your ~/.bashrc:
  • export WORKON_HOME="~/envs" (or whatever you want to name the directory)
  • source /usr/local/bin/virtualenvwrapper.sh (the path should match the path printed by the pip installer for virtualenvwrapper). don't forget to source the bashrc file now:
  • source ~/.bashrc

modernomad virtualenv

  • mkvirtualenv modernomad this will automatically cause you to "enter" the virtualenv, as will be reflected by the prompt now prefixed with (modernomad). use the following commands to work with virtualenvwrapper: workon to work on a specific virtual env, pip install blah to install packages, lssitepackages to see packaged installed in the virtual env.

dependencies:

within the virtualenv

  • pip install -r requirements.txt.

to run:

to migrate:

About

manage a network of one or more houses, members, and resources

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.7%
  • Python 19.3%