https://github.com/burritosoftware/nerdtendo
The original Super Mario Maker Discord bot, now supporting SMM2!
https://github.com/burritosoftware/nerdtendo
Last synced: about 1 year ago
JSON representation
The original Super Mario Maker Discord bot, now supporting SMM2!
- Host: GitHub
- URL: https://github.com/burritosoftware/nerdtendo
- Owner: burritosoftware
- License: gpl-3.0
- Created: 2021-12-23T22:48:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-04T03:33:39.000Z (over 4 years ago)
- Last Synced: 2025-06-12T12:49:43.173Z (about 1 year ago)
- Language: Python
- Size: 146 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nerdtendo
The original Super Mario Maker Discord bot, now supporting SMM2!
---
## Setup
### Requirements
- Python 3.8+
- A copy of [Toost](https://github.com/TheGreatRambler/toost) placed in `toost`
- (optional) [pm2](https://pm2.keymetrics.io/), to manage the bot's process
### Installation
1. Clone the source to your computer.
```
git clone https://github.com/burritosoftware/Nerdtendo.git
cd Nerdtendo
```
2. Install the necessary requirements.
```
python3.8 -m pip install -r requirements.txt
python3.8 -m pip install git+https://github.com/neonjonn/lightbulb-ext-neon.git
```
3. Create an `.env` file, and paste your Discord bot token inside.
```
cp .env-example .env
nano .env
```
4. Start the bot.
```
python3.8 bot.py
(or if using pm2)
pm2 start --interpreter=python3.8 bot.py
```