Integration with Git#

We are going to upload our code to github in a later section.
For now, let’s just init our git repository.
Run this:

git init

Copy this to a .gitignore file:

node_modules/
.idea
venv*/
.serverless/*
volume/*

Run this: `

git add -A

And let’s commit

git commit -m "initial commit"