Create a new Github repo Create a project in GCP UI Setup GAE API (just activate), Permissions (go to IAM and add it) and Cloud Build as well activate cloud-shell and add ssh-keys if not already added to Github: i.e. type ssh-keygen -t rsa than upload key to Github ssh settings Create an initial project…
Tag: cd
Python Project Scaffold
create a project scaffold or project template to get started faster with python projects We will create a virtual environment inside our project to avoid any incompatibility issues Example code Example test code We need then a Makefile to automate builds and tests Then we will create the requirements file The .github/workflows/pythonapp.yml file that stores…