update path

This commit is contained in:
Mylloon 2021-06-11 11:15:26 +02:00
parent f6d911b137
commit 3dd361be25
2 changed files with 2 additions and 2 deletions

View file

@ -42,4 +42,4 @@ To find reddit tokens, go to [this site](https://www.reddit.com/prefs/apps) and
## __Launching locally__
If you want to run it without Docker, I personally use [direnv](https://direnv.net/) to store variables and have them only in the working folder.
Simply run python3 `src/main.py` to launch the bot in the repo folder.
Simply run `python3 main.py` in `src` folder to launch the bot in the repo folder.

View file

@ -2,7 +2,7 @@ from utils.db import Database
class Reminder(Database):
def __init__(self):
super().__init__(r"src/db/bot.sqlite3")
super().__init__(r"db/bot.sqlite3")
def creationTable(self):
"""Créer la table qui stocker les reminders"""