Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
*.swp
|
||||
venv/*
|
||||
*.pyc
|
||||
__pycache__/*
|
||||
__pycache__
|
||||
*.wpr
|
||||
*.log
|
||||
.idea/
|
||||
@@ -0,0 +1,6 @@
|
||||
FROM python:3
|
||||
|
||||
COPY . /dkebab/
|
||||
RUN pip3 install -r /dkebab/requirements.txt
|
||||
|
||||
CMD python3 /dkebab/kebab_worker/main.py
|
||||
+2993
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,10 @@
|
||||
import os
|
||||
|
||||
|
||||
def main():
|
||||
for i in range(os.cpu_count()):
|
||||
print(i)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
@@ -0,0 +1,3 @@
|
||||
networkx
|
||||
numpy
|
||||
requests
|
||||
Reference in New Issue
Block a user