whoogle-search/.replit
KokoTheBest 1ac0d9bd86
Make replit install all requirements first
This should install all requirements from requirements.txt. It makes this a one click experience, without the user having to run `pip install -r requirements.txt` and then tap the run button. I myself had to first run that command in my repl, so I have made this change so others don't have to do the same.

repl.it also runs on linux based systems, so `&&` is the correct bash syntax.
2021-07-15 23:30:25 -04:00

4 lines
87 B
Plaintext

language = "python3"
run = "./run"
onBoot = "pip install -r requirements.txt && ./run"