Cloning the repository
-
Sign up to Blitzship here (opens in a new tab).
-
Check your email inbox. Once you have confirmed your email, you will be invited to a private GitHub organisation that contains the boilerplate code.
If you haven't received any email, please contact me at help@blitz-ship.com and I'll make sure you'll get access asap.
-
Now, clone the repo from the GiHub Organisation
git clone https://github.com/Blitzship/blitzship-boilerplate.git
-
Delete the existing
.git
folder:rm -rf .git
-
Re-initialize git (run commands one by one):
git init git add . git commit -m "first commit" git branch -M main
-
Go to github and create a new repository.
-
Push the code to the new repository:
git remote add origin <your-repository-url> git push -u origin main
-
The monorepo uses pnpm workspaces (opens in a new tab), so you'll need to install
pnpm
if you haven't already (see here (opens in a new tab) for full installation guide):npm install -g pnpm
-
Now
cd
into the cloned repository and install all dependencies:pnpm install
Next, we'll be setting up your AWS account and the AWS CLI.