Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 2 KB

File metadata and controls

36 lines (29 loc) · 2 KB

Fynd Extension Vue Starter Template

Vue.js

Coverage Status

This repository is the frontend app for Fynd’s extension starter templates. You probably don’t want to use this repository directly, but rather through one of the example templates.

Directory structure

Below is the structure of the project directory along with brief descriptions of the main components:

.
├── App.vue                   # The main Vue component
├── README.md                 # Project documentation
├── babel.config.js           # Babel configuration
├── fdk.ext.config.json       # Configuration file for FDK extension
├── index.html                # Main HTML file
├── jest.config.js            # Jest configuration for unit tests
├── main.js                   # Entry point for the Vue application
├── package-lock.json         # Lockfile for npm dependencies
├── package.json              # Project metadata and dependencies
├── pages                     # Page components
│   ├── Home.vue              # Home page component
│   └── NotFound.vue          # 404 Not Found page component
├── public                    # Public assets
├── router.js                 # Vue Router configuration
├── test                      # Test files and configurations
└── vite.config.js            # Vite configuration file contains the configuration for Vite, including server setup and proxy settings.

Environment Variables

  • Never commit .env or any file that contains real environment variables and secrets; use .env.example (with placeholder values only) for documentation in the repository.