Skip to main content

Environment Setup

Backend devs should have the following installed and configured as described below:

Install Python 3.x

  1. Download the Python installer package from the official Python website
  2. It should detect your operating system and show a yellow download button. If it doesn’t, click the windows link and choose the latest Python release.
  3. Once the download is complete, double-click the package to start installing Python. Follow the installation steps with the default settings.
  4. Once installation is complete, you have python installed on your system!

To check if it is installed correctly:

py --version
# Python 3.10.7
info

If you have installed Python through the Microsoft Store, replace py with python in the command above.

Install poetry

The installer script is available directly at install.python-poetry.org. The script can be executed directly (i.e. curl python) or downloaded and then executed from disk (e.g. in a CI environment).

Step 1. Install Poetry

Run the following with PowerShell

(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -
info

If you have installed Python through the Microsoft Store, replace py with python in the command above.

Step 2. Add Peotry to your PATH

The installer creates a poetry wrapper in %APPDATA%\Python\Scripts on Windows.

If this directory is not present in your $PATH, you can add it in order to invoke Poetry as poetry.

Step 3. Use Poetry

Once Poetry is installed and in your $PATH, you can execute the following

poetry --version

Install nvm & node.js

Follow the instructions to install nvm & node.js here

Install serverless cli

Install dynamodb offline