If you want to try franchise out, there's an online version you try right now right here.
If you're interested in contributing, there are instructions for running franchise in development mode in the readme.
Otherwise...
-
If you don't have
npm
oryarn
, install yarn. -
Open up a terminal and run
git clone --depth 1 https://github.com/HVF/franchise.git
-
cd into the project directory
cd franchise
-
Install the project dependencies
yarn install
(you can also run
npm install
) -
Build franchise to static files
yarn build
This command makes a folder named
/bundle
containing anindex.html
file which runs franchise when you open it in a browser. -
Serve the static files
Use the http server of your choice to serve the contents of the
/bundle
directory. Using python, you might write:cd bundle python -m SimpleHTTPServer
-
(optional) Email us at sql@hvflabs.com if you're doing something interesting with franchise!