A Look at Required Files in the Project
This is how your DApp looks initially, with a basic project structure set up for Vite, Move contracts, and static assets, providing a solid foundation for development

Hereβs the file structure for your Aptos DApp project:
my-aptos-dapp/
βββ frontend/
β βββ ... (Vite configuration and related files)
βββ move/
β βββ Move.toml
β βββ contracts/
β β βββ ... (Move smart contracts)
β βββ ... (other Move project files)
βββ node_modules/
β βββ ... (installed Node.js dependencies)
βββ public/
β βββ ... (static assets like images)
βββ scripts/
β βββ ... (scripts for deployment or other tasks)
βββ package.json
βββ tsconfig.json
βββ README.md
Last updated