Skip to content

Commit 8df8418

Browse files
zamazzalzanninso
authored andcommitted
DEV-6316 fix language js to py
1 parent c3aefb0 commit 8df8418

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

β€Žsubjects/devops/crud-master-py/README.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

303303
When testing and before automating it through the VM build you should be able
304304
to 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

307307
As a best practice, you should develop your APIs using separates python virtual
308308
environments to isolate the requirements needed for each API. You can use

0 commit comments

Comments
Β (0)