Add README
This commit is contained in:
parent
2a31fa6059
commit
72c44aad27
|
@ -0,0 +1,36 @@
|
||||||
|
# musicube
|
||||||
|
|
||||||
|
### Development
|
||||||
|
|
||||||
|
Requirements:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ python --version
|
||||||
|
3.9.7
|
||||||
|
```
|
||||||
|
|
||||||
|
Configure virtual environment:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ python -m venv venv
|
||||||
|
$ source venv/bin/activate
|
||||||
|
```
|
||||||
|
|
||||||
|
Install requirements:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ pip install -r requirements.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
Configure ENV:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ cp .env.template .env
|
||||||
|
# Write BOT_TOKEN into .env
|
||||||
|
```
|
||||||
|
|
||||||
|
Run bot:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ python src/bot.py
|
||||||
|
```
|
Loading…
Reference in New Issue