Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 827 Bytes

CONTRIBUTING.md

File metadata and controls

44 lines (27 loc) · 827 Bytes

Contributor guide

Setup

For Python setup, run:

pip install -r requirements.txt

Front-end build setup procedure have to be done following front-end setup

See also:

Debug

To run Chalk'it from sources, use:

cd front-end
npm start

Build

Chalk'it may be build either as a pip package or as a full front-end statically hosted web-application.

  • Build a Python package

    python build.py --buildtype pip

    tar.gz build result will be placed on the ./build/dist directory.

  • Build a full front-end statically hosted web-application

    python build.py --buildtype hosted

    static files build result will be placed on the ./front-end/build directory.