Folder Structure

Template folder structure

After you unzip themeforest-main.zip file you will get all files that need to successfully run Pixy frontend and backend part of the template:

 themeforest_main

 ├── Documentation.txt
 ├── Readme.txt

 ├── pixy

    ├── .env
    ├── .env.example
    ├── .npmrc
    ├── .prettierignore
    ├── .prettierrc.json
    ├── eslint.config.mjs
    ├── next-env.d.ts
    ├── next-sitemap.config.cjs
    ├── next.config.js
    ├── package.json
    ├── postcss.config.js
    ├── redirects.js
    ├── tsconfig.json

    ├── public
    │   │
    │   ├── img
    │   ├── media
    │   ├── favicon.png 
    │   ├── favicon.svg
    │   ├── robots.txt 
    │   ├── sitemap.xml 
    │   │
    │── database
    │   │
    │   ├── pixy-db-postgres-custom.sql
    │   ├── pixy-db-postgres-plain.sql
    │   ├── docker-compose.yml
    │   │
    └── src
        ├── access
        ├── app
        │   │
        │   ├── (frontend) 
        │   │   ├── _styles
        │   │   ├── (sitemaps)
        │   │   ├── [slug]
        │   │   ├── next
        │   │   ├── posts
        │   │   ├── projects
        │   │   ├── search
        │   │   ├── services
        │   │   │   
        │   │   ├── globals.css
        │   │   ├── layout.tsx
        │   │   ├── not-found.tsx
        │   │   ├── page.tsx
        │   │   │   
        │   ├── (payload)
        │   │
        ├── blocks
        ├── collections
        ├── common
        ├── components
        ├── endpoints
        ├── fields
        ├── globals
        ├── hooks
        ├── plugins
        ├── providers
        ├── search
        ├── utilities

        ├── cssVariables.js
        ├── environment.d.ts
        ├── payload-types.ts
        ├── payload.config.ts

Last updated