├── .gitignore ├── Dockerfile ├── README.md ├── app.json ├── app ├── actions │ ├── __init__.py │ └── actions.py ├── config.yml ├── credentials.yml ├── data │ ├── nlu.yml │ ├── rules.yml │ └── stories.yml ├── domain.yml ├── endpoints.yml └── tests │ └── test_stories.yml ├── heroku.yml └── server.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app.json -------------------------------------------------------------------------------- /app/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/actions/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/actions/actions.py -------------------------------------------------------------------------------- /app/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/config.yml -------------------------------------------------------------------------------- /app/credentials.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/credentials.yml -------------------------------------------------------------------------------- /app/data/nlu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/data/nlu.yml -------------------------------------------------------------------------------- /app/data/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/data/rules.yml -------------------------------------------------------------------------------- /app/data/stories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/data/stories.yml -------------------------------------------------------------------------------- /app/domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/domain.yml -------------------------------------------------------------------------------- /app/endpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/endpoints.yml -------------------------------------------------------------------------------- /app/tests/test_stories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/app/tests/test_stories.yml -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/heroku.yml -------------------------------------------------------------------------------- /server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-ai/rasa-heroku-template/HEAD/server.sh --------------------------------------------------------------------------------