diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..82adb58 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__ +venv diff --git a/Snapgene_Submit_v002_20200127.py b/Snapgene_Submit_v002_20200127.py index 0c123c0..51b4a7b 100644 --- a/Snapgene_Submit_v002_20200127.py +++ b/Snapgene_Submit_v002_20200127.py @@ -84,5 +84,3 @@ def wrapper(): except Exception as e: print(e) abort(404) - -app.run(debug=True) diff --git a/snapgene-submit-plugin.wsgi b/snapgene-submit-plugin.wsgi new file mode 100755 index 0000000..933c282 --- /dev/null +++ b/snapgene-submit-plugin.wsgi @@ -0,0 +1 @@ +from Snapgene_Submit_v002_20200127 import app as application