update path
This commit is contained in:
parent
f6d911b137
commit
3dd361be25
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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"""
|
||||
|
|
Reference in a new issue