-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding different sh scripts for prod and dev
- Loading branch information
1 parent
460b79d
commit 6d9bb5f
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
sudo apt install libnspr4 libatk1.0-0 libatk-bridge2.0-0 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libasound2 libatspi2.0-0 libwebkit2gtk-4.0-dev\ | ||
&& export PYTHONPATH=$PYTHONPATH:./bot \ | ||
&& pip install -r requirements.txt \ | ||
&& python3.9 -m playwright install chromium \ | ||
&& python3.9 bot/runemaster.py & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
#!/bin/bash | ||
|
||
sudo apt install libnspr4 libatk1.0-0 libatk-bridge2.0-0 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libasound2 libatspi2.0-0 libwebkit2gtk-4.0-dev\ | ||
&& export PYTHONPATH=$PYTHONPATH:./bot \ | ||
export PYTHONPATH=$PYTHONPATH:./bot \ | ||
&& pip install -r requirements.txt \ | ||
&& python3 -m playwright install chromium \ | ||
&& python3 bot/runemaster.py |