36 lines
341 B
Markdown
36 lines
341 B
Markdown
# Misskey Random Sentence Bot
|
|
|
|
## How to run manually
|
|
|
|
1. clone repo
|
|
2. make venv
|
|
|
|
```
|
|
python3 -m venv venv
|
|
source ./venv/bin/activate
|
|
```
|
|
|
|
3. install modules
|
|
|
|
```
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
4. change setting
|
|
|
|
```
|
|
# copy example setting file
|
|
cp .example.env .env
|
|
|
|
# edit setting file
|
|
vim .env
|
|
|
|
5. RUN
|
|
```
|
|
|
|
python main.py
|
|
|
|
```
|
|
|
|
```
|