File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
subjects/devops/crud-master-py Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -284,13 +284,13 @@ a common way to structure this kind of projects that may help you:
284284β β β βββ __init__.py
285285β β β βββ ... // Other python files
286286β β βββ requirements.txt
287- β β βββ server.js
287+ β β βββ server.py
288288β βββ billing-app
289289β β βββ app
290290β β β βββ __init__.py
291291β β β βββ ... // Other python files
292292β β βββ requirements.txt
293- β β βββ server.js
293+ β β βββ server.py
294294β βββ inventory-app
295295β β βββ app
296296β β β βββ __init__.py
@@ -302,7 +302,7 @@ a common way to structure this kind of projects that may help you:
302302
303303When testing and before automating it through the VM build you should be able
304304to start the API Gateway and the two APIs by using the command `python
305- server.js ` inside their respective directories.
305+ server.py ` inside their respective directories.
306306
307307As a best practice, you should develop your APIs using separates python virtual
308308environments to isolate the requirements needed for each API. You can use
You canβt perform that action at this time.
0 commit comments