Commands
python3 -m venv .venv
source .venv/bin/activate
python -m pip install python-dotenv requests
touch .env .env.example requirements.txtAI Builder Launchpad · Step 05
A clean environment prevents dependency confusion and keeps secrets out of source files.
python3 -m venv .venv
source .venv/bin/activate
python -m pip install python-dotenv requests
touch .env .env.example requirements.txtAPI_KEY="put_real_key_in_dotenv"
PUBLIC_BASE_URL="http://127.0.0.1:8000".env..env.example.A script that loads an environment variable and exits clearly if it is missing.
Your Foundation Progress
0 / 10 lessons completed