Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
28 lines (21 sloc) 654 Bytes
from __future__ import print_function, unicode_literals
import os
from shutil import copytree
if __name__ == '__main__':
src = os.path.dirname(os.path.abspath(__file__))
dest = os.path.join(os.path.split(src)[0], 'asjp')
if src != dest:
copytree(src, dest)
os.chdir(dest)
print("""\
#---------------------------------------------------------#
Run
cd asjp
pip install -r requirements.txt
python setup.py develop
clld-unfreeze sqlite.ini
pserve sqlite.ini
or equivalent to start the eWAVE web app accessible at
http://localhost:6543
#---------------------------------------------------------#
""")