#! /bin/sh

# create the relevant directories
mkdir tufdemo
cd tufdemo
mkdir demorepo
mkdir demoproject

# add a file to the project
echo "#! /usr/bin/env python" > demoproject/helloworld.py
echo "print 'hello, world!'" >> demoproject/helloworld.py

# run the quickstart script
quickstart.py -t 1 -k keystore -l demorepo -r demoproject


