Create .env file and replace variables with your values:
$ cp .env.example .env
Build docker images:
$ make app-build
After this you need to create and migrate your database:
$ make app-prepare-db
And up everything:
$ make app-up
Great! Now you can easily start your bot just by running this command:
If you have some proposals how to improve this bot feel free to open issues and send pull requests!
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create new Pull Request