This is a MVP monorepo for what a generator-based init experience for algokit could look like.
The goal is to create a base template with generators that can be ran at any time to add functionality.
- Clone this repo
- Run
algokit generate typescript
to generate the base typescript files - Run
algokit generate tealscript
and/oralgokit generate react
to generate the tealscript and/or react files - Run algokit bootstrap all to install dependencies and setup
.env
Run all the generators and their associated npm scripts
algokit generate typescript &&\
algokit generate tealscript &&\
algokit generate react &&\
algokit bootstrap all &&\
npm run compile-contracts &&\
npm run generate-clients &&\
npm run test &&\
npm run dev