-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c99128b
commit 0dc7483
Showing
4 changed files
with
41 additions
and
6 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,38 @@ | ||
{ | ||
// These tasks will run in order when initializing your CodeSandbox project. | ||
"setupTasks": [ | ||
{ | ||
"name": "Install Dependencies", | ||
"command": "bash scripts/setup.sh" | ||
} | ||
], | ||
|
||
// These tasks can be run from CodeSandbox. Running one will open a log in the app. | ||
|
||
"tasks": { | ||
"format": { | ||
"name": "format", | ||
"command": "black ." | ||
}, | ||
"install": { | ||
"name": "install", | ||
"command": "pip3 install --no-deps -U pytgcalls==3.0.0.dev24 tgcalls==3.0.0.dev6 && pip3 install -r requirements.txt", | ||
"restartOn": { | ||
"files": ["requirements.txt"] | ||
} | ||
}, | ||
"lint": { | ||
"name": "lint", | ||
"command": "pylint --recursive yes --jobs=4 ." | ||
}, | ||
"run": { | ||
"name": "run", | ||
"command": "python3 -m bot", | ||
"runAtStart": true | ||
}, | ||
"session": { | ||
"name": "session", | ||
"command": "python3 ./session/session.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 |
---|---|---|
|
@@ -13,6 +13,4 @@ kreacher.client.session | |
kreacher.client.session-journal | ||
|
||
.env | ||
:memory:.session | ||
|
||
# .codesandbox/ | ||
:memory:.session |
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
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