Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 762 Bytes

HOWTO.md

File metadata and controls

26 lines (22 loc) · 762 Bytes

Running the blackfootwords clld app

  1. Clone the repository https://github.com/clld/blackfootwords
  2. Activate a virtualenv, install the app:
    pip install -e .
  3. Install pycldf and waitress:
    pip install waitress
    pip install pycldf
  4. Create the database, i.e. load the CLDF dataset into a db suitable for the web app:
    clld initdb development.ini --cldf PATH/TO/blackfootwords/cldf/Wordlist-metadata.json
  5. Start the app:
    pserve development.ini

You should now be able to visit the app with your browser at http://localhost:6543/

Going further

The clld docs at https://clld.readthedocs.io/en/latest/ contain some information about how to customize clld apps.