Project Structure
Project Structure
Section titled “Project Structure”Learn about the default aincraft project structure and what each file does.
Default Structure
Section titled “Default Structure”my-aincraft-project/├── src/│ ├── components/│ ├── pages/│ └── styles/├── public/├── aincraft.config.js└── package.jsonKey Directories
Section titled “Key Directories”Contains all your source code.
public/
Section titled “public/”Static assets that will be served as-is.
aincraft.config.js
Section titled “aincraft.config.js”Configuration file for your aincraft project.
Customizing the Structure
Section titled “Customizing the Structure”You can customize the project structure to fit your needs.
Best Practices
Section titled “Best Practices”- Keep your components organized
- Use meaningful file names
- Separate concerns properly