Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Latest commit

 

History

History
51 lines (34 loc) · 2.04 KB

README.md

File metadata and controls

51 lines (34 loc) · 2.04 KB

adv-default-theme - Theme based on Vue Element Admin for ADempiere Vue

New adv-default-theme template theme for ADempiere Vue, based on Vue Element Admin. 90% of the adv-default-theme code is locked in the Vue Element Admin library. Thanks to this, adv-default-theme can keep its flexibility, but minimize the risk of errors.

🔌 Installation

In order to use the new ADVue Theme Pos theme in your ADempiere Vue installation, you need:

  1. Install lerna globally:

    yarn global add lerna
    

    or

    npm install -g lerna
    
  2. Configure adv-default-theme repository as a git submodule in theme path of your ADempiere Vue workspace, and then track develop branch:

    git submodule add -b develop https://github.com/adempiere/adv-default-theme.git src/themes/advDefaultTheme
    
  3. Fetch all the data:

    git submodule update --init --remote
    
  4. Generate local.json file from script generate-local-config.js. Update ADempiere Vue configuration by copying local.json file from src/themes/advDefaultTheme to root config directory:

    node src/themes/advDefaultTheme/scripts/generate-local-config.js
    
  5. Download all dependencies and start development server:

    yarn && yarn dev
    
  6. That's it! Now, after opening your development server (http://localhost:9527 by adv-default-theme), you should see ADempiere Vue with the adv-default-theme. 🎉

Design customization

You can use this template project to create your own project.