diff options
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -1,6 +1,26 @@ +# How to use + +Simple app for reaching out to slack and checking for mentions. Great for +keeping slack closed. Also a little project to test playing with Alembic. + +# How to get slack token [From Here][3] + +Source: [emacs-slack][1] + +- Go to [slack customization page][2] +- Open developer tools +- Go to the console and enter: window.prompt("your api token is: ", TS.boot_data.api_token) + +(Doesn't seem to work with xoxc tokens) ```bash # Generate Migration alembic revision --autogenerate --message "Create the example Database" # Apply Migrations alembic upgrade head +``` + +[1]: https://github.com/yuya373/emacs-slack#how-to-get-token +[2]: https://my.slack.com/customize +[3]: https://github.com/erroneousboat/slack-term/wiki#running-slack-term-without-legacy-tokens + |