Sample code used in the Algorand Developers video series
https://www.youtube.com/@algodevs/playlists
- Install algokit
- Run Docker
- Launch Algorand localnet with
algokit localnet start
For a detailed setup guide, watch Development Environment Setup video
cd python
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtThen run the scripts like:
python accounts/create_account.pycd javascript
npm installThen run the scripts like:
npm run create-accountOpen project folders individually
cd smart-contracts/master-beaker/what-is-beakerThen setup your development environment with:
algokit bootstrap all
source .venv/bin/activateThen run deploy scripts like:
cd beaker-calc
python3 bkr_deploy.pycd smart-contracts/master-pyteal
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtThen run the scripts like:
python3 what_is_pyteal/counter.py