Project Boilerplate started using https://github.com/not-reed/fullstack-alephium
bunx degit not-reed/fullstack-alephium minting-time
cd apps/backend
bun install
bun dev
requires some backend to be operational, either locally, or using live API
cd apps/frontend
bun install
bun dev
cd packages/nft-contracts
# run in separate terminals
bun test:watch
bun compile:watch
# Running scripts
bun dev/mint.ts
bun dev/burn.ts
bun dev/destroy.ts
bun dev/transfer.ts <YOUR_ADDRESS>
bun dev/withdraw.ts
# contracts
cd packages/nft-contracts
bun cli compile --network devnet && bun cli deploy --network devnet
# Backend API
bun deploy:api
# Frontend - on push to main
git push