Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| 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 | |
| #---------------------------------------------------------# | |
| """) |