Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/notmyidea/quotabot
A Discord bot written in Java using JDK 8 and later, built with the JDA library.
https://github.com/notmyidea/quotabot
discord discord-bot discord-java discord-java-api quotes quotes-api quotes-app
Last synced: about 1 month ago
JSON representation
A Discord bot written in Java using JDK 8 and later, built with the JDA library.
- Host: GitHub
- URL: https://github.com/notmyidea/quotabot
- Owner: notmyidea
- Created: 2024-01-08T03:53:31.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-08T06:43:53.000Z (12 months ago)
- Last Synced: 2024-03-11T20:44:10.410Z (10 months ago)
- Topics: discord, discord-bot, discord-java, discord-java-api, quotes, quotes-api, quotes-app
- Language: Java
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser/badge.svg)](https://maven-badges.herokuapp.com/maven-central/cz.jirutka.rsql/rsql-parser)
# QuotaBot
QuotaBot is a Discord bot written in Java using JDK 8 and later, built with the JDA library. It fetches a famous quote from the quotable.io API and posts it in a specified channel every 24 hours.
## Table of Contents
- [Installation](#installation)
- [Daemonizing](#daemonizing)
- [Usage](#usage)
- [Contributing](#contributing)
- [Credits](#credits)
- [Support](#support)
- [Version](#version)## Installation
1. Clone the repository:
```git clone https://github.com/notswedish/QuotaBot.git```2. Compile the bot:
```javac -cp ".:path/to/JDA.jar:path/to/other/dependencies.jar" QuotaBot.java```#### Or download the .jar in [the releases tab](https://github.com/notswedish/QuotaBot/releases)
3. Run the bot:
```java -jar QuotaBot.jar```
It's compiled in Java 17, so you need to have Java 17 installed on your system to run it.
## UsageConfigure the bot by editing the .env file with these values
- TOKEN=token
- QOTD_CHANNEL_ID=channelid## Daemonizing
You can create a systemd service unit file to manage your Java application as a service. Here's how to setup a systemd service for your application:
1. Create a new service file:
```sudo nano /etc/systemd/system/quotabot.service```2. Add the following content
```
[Unit]
Description=QuotaBot
After=network.target[Service]
User=root
WorkingDirectory=/home//QuotaBot
# may be /root/QuotaBot/
ExecStart=/usr/bin/java -jar /home//QuotaBot/QuotaBot-1.0-SNAPSHOT-jar-with-dependencies.jar
SuccessExitStatus=143
TimeoutStopSec=10
Restart=on-failure
RestartSec=5[Install]
WantedBy=multi-user.target
```
3. Now inform systemd about this new service:
```sudo systemctl daemon-reload```4. Enable the service to start on boot:
```sudo systemctl enable quotabot ```5. Now you can start your service:
```sudo systemctl start quotabot```6. You can check the status of your service:
```sudo systemctl status quotabot```7. To stop the service, you can use:
```sudo systemctl stop quotabot```This configuration keeps your application running in the background and automatically starts it at system boot. It also restarts your application if it fails.
## ContributingFeel free to contribute to the development of QuotaBot. If you have suggestions, bug reports, or want to add new features, open an issue or create a pull request.
## Credits
QuotaBot relies on the quotable.io API to fetch quotes from famous people. Thanks to quotable.io for providing this awesome service.
## Support
For any issues, questions, or support, contact the author:
- Discord: notmyidea## Version
- **Current Version:** Working
- **Last Update:** 2024.08.01## Made for the [PUREFACTIONS](https://discord.gg/purefactions) discord server