Skip to content

Commit

Permalink
DEV-6316 fix language js to py
Browse files Browse the repository at this point in the history
  • Loading branch information
zamazzal committed Dec 2, 2024
1 parent c3aefb0 commit 64b40da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions subjects/devops/crud-master-py/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,13 +284,13 @@ a common way to structure this kind of projects that may help you:
β”‚ β”‚ β”‚ β”œβ”€β”€ __init__.py
β”‚ β”‚ β”‚ └── ... // Other python files
β”‚ β”‚ β”œβ”€β”€ requirements.txt
β”‚ β”‚ └── server.js
β”‚ β”‚ └── server.py
β”‚ β”œβ”€β”€ billing-app
β”‚ β”‚ β”œβ”€β”€ app
β”‚ β”‚ β”‚ β”œβ”€β”€ __init__.py
β”‚ β”‚ β”‚ └── ... // Other python files
β”‚ β”‚ β”œβ”€β”€ requirements.txt
β”‚ β”‚ └── server.js
β”‚ β”‚ └── server.py
β”‚ └── inventory-app
β”‚ β”‚ β”œβ”€β”€ app
β”‚ β”‚ β”‚ β”œβ”€β”€ __init__.py
Expand All @@ -302,7 +302,7 @@ a common way to structure this kind of projects that may help you:

When testing and before automating it through the VM build you should be able
to start the API Gateway and the two APIs by using the command `python
server.js` inside their respective directories.
server.py` inside their respective directories.

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

0 comments on commit 64b40da

Please sign in to comment.