Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.07 KB

README.md

File metadata and controls

35 lines (22 loc) · 1.07 KB

eliza-app

Repository for the Eliza App.

This repository contains all components of the Eliza app as git submodules and can be used as the root to execute build commands that are run on the components.

For a description of the Eliza App see to the README there.

Check-out

To check out all code needed for the Eliza App, clone this repository including all submodules:

    git clone --recurse-submodules -j8 https://github.com/leolani/eliza-app.git

Run the application

Checkout the repository as described in Check-out. Then go to the repository root, build the project, activate the virtual environment for the Python application and run it. Altogether:

    git clone --recurse-submodules -j8 https://github.com/leolani/eliza-app.git
    cd eliza-app
    make build
    make build
    cd app
    source venv/bin/active
    cd py-app
    python app.py

Development

Follow the instructions in cltl-combot.