Getting Started
This section explains how to install Kogno and create a new project.
Kogno requires Ruby version 2.7.0 or later.
gem install kogno
gem install --no-document kogno
kogno new your_chatbot
A new project has been created at ./your_chatbot
Next steps:
- cd ./your_chatbot/
- bundle install
- Configure your database -> config/database.yml
- run kogno install
├── Gemfile
├── application.rb
├── bot
│ ├── contexts
│ │ └── main_context.rb
│ ├── conversation.rb
│ ├── helpers
│ ├── models
│ │ └── user.rb
│ └── templates
│ └── main
├── config
│ ├── application.rb