MovieFubb is an application designed to make sharing movie lists and favourite lists easy and fun. It's powered by a tiny collection of bots, who seek meta data in internet friendly ways.
Application programmed by Daniel Altenburg (c) 2016 - 2017
For production installation instructions please see install.md
To install for development
Start by cloning this repository
cd ~/
git clone https://github.com/DanielAlt/Fubb- Download and install the python2.7 msi from python.org
- Run the installer.
- Include python in you PATH environment variable. This is usually located at
C:\\python27\
If pip isn't already installed, Install Pip by doing the followings.
wget -O get-pip.py https://bootstrap.pypa.io/get-pip.py
python get-pip.pymake sure to include pip in your PATH environment variable, under normal circumstances it should be located at C:\\Python27\Scripts
if you experience any issues installing pip, please see this stackoverflow question
Now install virtualenv with pip.
pip install virtualenvWith virtualenv installed create a new python virtual environment.
virtualenv ~/FubbEnvSource the python installation.
FubbEnv/Scripts/activate
if you experience an error, 'running scripts is disabled on this system,' execute Set-ExecutionPolicy Unrestricted -Force in powershell as administrator
Now you're ready to install the application
cd /path/to/Fubb
python setup.py develop
..\FubbEnv\Scripts\initialize_MovieFubb_db.exe development.ini
pserve development.iniInstructions for ubuntu are currently incomplete.
# install pip if ubuntu 14.04 or below
# this is included with python on later distributions
sudo apt-get install python-pip# install virtualenv with pip
sudo pip install virtualenv