Remove files that are in .gitignore

This commit is contained in:
David Brazda
2023-10-15 21:20:17 +02:00
parent 859975d169
commit f36c3d4369
64 changed files with 0 additions and 87 deletions

54
.gitignore vendored
View File

@ -1,54 +0,0 @@
/.DS_Store
/v2realbot.egg-info
/__pycache__/
/v2realbot/__pycache__/
/.vscode/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*.pyc
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
strat.log
v2realbot/__pycache__/
v2realbot/.DS_Store
v2realbot/static/.DS_Store
v2realbot/static/js/.DS_Store
v2realbot/static/js/libs/.DS_Store
v2realbot/strategyblocks/activetrade/.DS_Store
v2realbot/__pycache__/config.cpython-310.pyc
.gitignore
v2realbot/enums/__pycache__/enums.cpython-310.pyc
v2realbot/common/__pycache__/model.cpython-310.pyc
v2realbot/__pycache__/config.cpython-310.pyc
v2realbot/backtesting/__pycache__/backtester.cpython-310.pyc
v2realbot/common/__pycache__/model.cpython-310.pyc
v2realbot/enums/__pycache__/enums.cpython-310.pyc
v2realbot/indicators/__pycache__/indicators.cpython-310.pyc
v2realbot/loader/__pycache__/aggregator.cpython-310.pyc
v2realbot/loader/__pycache__/trade_offline_streamer.cpython-310.pyc
v2realbot/loader/__pycache__/trade_ws_streamer.cpython-310.pyc
v2realbot/strategy/__pycache__/base.cpython-310.pyc

26
.vscode/launch.json vendored
View File

@ -1,26 +0,0 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Aktuální soubor",
"type": "python",
"request": "launch",
"program": "${file}",
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${workspaceFolder}:${workspaceFolder}/bld"
},
"console": "integratedTerminal",
"justMyCode": true,
"python": "${command:python.interpreterPath}",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "Python: File",
"type": "python",
"request": "launch",
"program": "${file}",
"justMyCode": true
}
]
}

View File

@ -1,7 +0,0 @@
{
"python.analysis.logLevel": "Trace",
"terminal.integrated.env.osx": {
"PYTHONPATH": "${workspaceFolder}/"
},
"python.analysis.typeCheckingMode": "off"
}