Verify your environment and start LocalStack before proceeding to module 01.
Run the setup script — it fetches today's workshop token automatically:
./00-setup/setup.shIf you're running this outside the workshop, set your own token:
export LOCALSTACK_AUTH_TOKEN=<your-token>localstack start -dWait until you see Ready. in the logs (localstack logs -f).
awslocal s3 ls # should return empty list (no error)
curl -s http://localhost:4566/_localstack/health | python3 -m json.toolYou should see "running": true and a list of available services.
| Tool | Purpose | Check |
|---|---|---|
localstack |
Run AWS locally | localstack --version |
awslocal |
AWS CLI → LocalStack | awslocal --version |
tflocal |
Terraform → LocalStack | tflocal --version |
pytest |
Integration tests | pytest --version |
| Docker | LocalStack runtime | docker info |