Hi, I’m busy with the Relational Database certification, but Gitpod now says that I have exceeded my usage limit.
Please provide step by step instructions to resolve.
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36
Challenge Information:
Learn Bash and SQL by Building a Bike Rental Shop - Build a Bike Rental Shop
ILM
March 11, 2024, 9:06am
2
The steps would be upgrading to the first paid tier of GitPod to continue, or continue locally
In case anybody is looking for how to create the environment locally, here are the steps:
1. Install Git
You’ll need Git to clone repositories and manage version control:
Windows: Download and install Git from here .
Mac: Install it using Homebrew by running brew install git
.
Linux: Install Git via your package manager, e.g., sudo apt install git
.
2. Install a Code Editor (like VSCode)
Since Gitpod uses Visual Studio Code (VSCode), you can replicate the experience:
3. Install Node.js and npm
You might need Node.js and npm (Node package manager) to run certain development tools:
Windows/Mac: Download and install Node.js from here .
Linux: Use your package manager, e.g., sudo apt install nodejs npm
.
4. Install Bash (Linux Shell)
Windows: Install WSL to have a Linux environment on Windows.
Mac/Linux: You already have Bash installed by default.
5. Clone the FreeCodeCamp Repository
Clone the FreeCodeCamp repository or project files that you need using Git.
bash
Copy code
git clone <repo-url>
You can find the relevant repo by checking the instructions on FreeCodeCamp or GitHub.
6. Install CodeRoad Extension
Open VSCode.
Go to the Extensions section and search for CodeRoad .
Install the extension. This will give you the same interactive tutorial experience as in Gitpod.
Now run the Project.