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.txt
Then run the scripts like:
python accounts/create_account.py
cd javascript
npm install
Then run the scripts like:
npm run create-account
Open project folders individually
cd smart-contracts/master-beaker/what-is-beaker
Then setup your development environment with:
algokit bootstrap all
source .venv/bin/activate
Then run deploy scripts like:
cd beaker-calc
python3 bkr_deploy.py
cd smart-contracts/master-pyteal
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Then run the scripts like:
python3 what_is_pyteal/counter.py