Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 651 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 651 Bytes

O-LAP Starter Project

available on github and npm

Starter project to create an O-LAP Design

Github Installation

git clone https://github.com/O-LAP/starter npm install npm run dev

NPM Installation

npm install olap-starter npm install npm run dev

(press ctrl + c to stop the server)

Update the design

  • Update the design file in design/Design.js.
  • Open a browser and go to localhost:3000

Update the git repo to point to your own master repo.

git remote remove origin git remote add origin <YOUR-REPO> git push -u origin master

Record change

git add --a git commit -m "<YOUR-MESSAGE"> git push