Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.05 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.05 KB

Eve - A theme for EverShop

This is an example theme for EverShop. It is a simple theme that shows how to develop a theme for EverShop.

EverShop

Installation

Assuming you have EverShop installed, you can install this theme by following the steps below:

  1. Download the theme from the GitHub repository
  2. Unzip the theme
  3. Copy the theme folder eve into the themes directory (By default, EverShop does not create themes folder. You can create it yourself) in your EverShop installation directory
  4. Edit the configuration file at config/default.json and add the following line to the file:
{
  ... // Other configurations
  "system": {
      "theme": "eve",
      ... // Other configurations

  }
}
  1. Run the build command to build the theme:
npm run build
  1. Run the start command to start the server:
npm run start