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