We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20460bf commit ec0041fCopy full SHA for ec0041f
apps/py/ch07_web/guitary/app.py
@@ -1,3 +1,9 @@
1
+import os
2
+import sys
3
+
4
+folder = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
5
+sys.path.insert(0, folder)
6
7
import flask
8
from guitary.services import catalog_service
9
apps/py/ch12_deployment/server_setup/server_setup.sh
@@ -50,7 +50,7 @@ pip install --upgrade uwsgi
50
51
# clone the repo:
52
cd /apps
53
-git clone https://github.com/mikeckennedy/python-for-dotnet-developers-materials app_repo
+git clone https://github.com/talkpython/python-for-dotnet-developers-course app_repo
54
55
# Setup the web app:
56
cd /apps/app_repo/apps/py/ch07_web/
0 commit comments