4. Understanding the project structure
Learn how the FastStore project is organized, including its main directories, configurations, and code architecture.
In this step, you'll learn how a FastStore project is organized and why it matters. Understanding the folder layout and key files helps you navigate the codebase, make targeted changes, and avoid misconfigurations as you customize your store.
Here's the structure that represents the source code of a FastStore project:
_14/_14|-- /.faststore_14|-- /src_14    |-- /themes_14        |-- custom-theme.scss_14|-- cypress.config.ts_14|-- discovery.config.js_14|-- next-env.d.ts_14|-- package.json_14|-- README.md_14|-- tsconfig.json_14|-- vercel.json_14|-- vtex.env_14|-- yarn.lock
Folders
- 
/.faststore- Manages and coordinates the FastStore project to deliver a functional starter store. This folder, also known as @faststore/core, provides the core functionality of the FastStore starter. - 
/src- Contains all of your store's customizations, including your custom components and theme. 
Files
- 
custom-theme.scss- Holds the styling information for your store, controlling the graphic elements such as typography, colors, borders, and spacing that give your store with a unique look and feel. - 
cypress.config.ts- Configures the options and preferences required for running tests with Cypress. - 
discovery.config.js- Configures aspects of the project such as SEO preferences, VTEX account options, and theme. Note that these configurations are set during the onboarding process, reducing the need for changes to this file. For more information on configuration options for this file, refer to Configuration options for discovery.config.js. - 
next-env.d.ts- Generates a TypeScript definition file for Next.js. - 
tsconfig.json- Configures the compiler options and project settings for TypeScript, including target version, module resolution, and source file locations. - 
vtex.env- Stores public environment variables that your application can access during runtime. These include flags likeSITE_HOST(specifying the store's domain in production) and other publicly accessible values, including feature flags, URLs, and Analytics public tracking IDs. For private environment variables such as API keys and database credentials, use VTEX secrets. - 
yarn.lock- Locks down the exact versions of your project's dependencies, including transitive dependencies, to ensure consistent builds across different machines and environments. This file is automatically generated based on the dependencies in yourpackage.jsonfile. 
package.json
Defines the project metadata and manages dependencies and scripts with Yarn. Key packages include:
@faststore/core
Bundles FastStore source code, including the starter store. It contains four sub-packages: 
components, sdk, ui, and api.@faststore/sdk
Handles all meaningful states an ecommerce store might have, such as:
| SDK states | Description | 
|---|---|
| Session | Handles auth, region, locale, and currency data. | 
| Cart | Handles a store cart's addition, remotion, update, and current state. | 
| Component | Handles the state of the components of a store (e.g., display/hide mini cart). | 
| Search | Handles the state of the faceted search (e.g., apply filters and sort). | 
The SDKs also provide GA4-compatible analytics functions to help you create powerful analytics capabilities in your ecommerce.
@faststore/ui
Provides the design system used by FastStore components, using Sass for styling. For more information, refer to the FastStore UI guide.
Although the components use Sass, you can style them using the desired tool for styling.
@faststore/api
Connects your project to your favorite ecommerce provider by creating interfaces for querying products, collections, and handling carts.
@faststore/cli
Provides scripts for building, running, debugging, and deploying your FastStore project. This package helps with debugging and differentiating between VTEX code and customizations. To learn more, refer to the FastStore CLI documentation.
Next step
Now that you understand your project structure, connect it to Headless CMS for content management: 5. Integrating your project with the Headless CMS