Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abitofevrything/translation_bot
https://github.com/abitofevrything/translation_bot
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/abitofevrything/translation_bot
- Owner: abitofevrything
- Created: 2023-11-02T20:54:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-06T20:55:18.000Z (about 1 year ago)
- Last Synced: 2023-11-08T05:43:40.883Z (about 1 year ago)
- Language: Dart
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# translation_bot
A Discord bot made with [nyxx](https://pub.dev/packages/nyxx) and [nyxx_commands](https://pub.dev/packages/nyxx_commands)!
### Getting started
#### Development
This brick includes a [devcontainer](https://code.visualstudio.com/docs/devcontainers/containers) to make developing with Docker and docker-compose easier. Devcontainers allow you to have access to your other docker-compose services such as databases without having to run them manually on your host machine.If you're using a devcontainer-compatible IDE, you can follow the setup instructions for that IDE:
- vscode: https://code.visualstudio.com/docs/devcontainers/containers#_getting-started
- GitHub codespaces: https://docs.github.com/en/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository
- JetBrains: Local devcontainers are currently unsupported. Follow the instructions for GitHub codespaces, then [connect to it from your IDE](https://docs.github.com/en/codespaces/developing-in-codespaces/opening-an-existing-codespace?tool=jetbrains).Once you're ready to open your container, rename `.env.example` to `.env` and replace the placeholders with their real values. Then, you can open your project in the devcontainer:
- vscode: Run the `Dev Containers: Reopen in Container` command from the command palette
- GitHub codespaces: https://docs.github.com/en/codespaces/developing-in-codespaces/opening-an-existing-codespace#### Running your bot
To run your bot, make sure that you have set up your `.env` file correctly, then run `docker compose up`. Add the `--build` flag if you have made changes to your bot since the last time it started, and add the `-d` flag if you want it to run in the background.To stop your bot, either press `Ctrl+C` if you didn't use the `-d` flag or run `docker compose down`.
### Next steps
Now that you've created your project, here's what to do next:
- Check out the [example bot](https://github.com/nyxx-discord/running_on_dart)
- Join the [support server](https://discord.gg/nyxx)
- Visit the [docs](https://pub.dev/documentation/nyxx_commands/latest)