Skip to main content
Version: 0.1.x

Getting started

Getting started with Dali

Clone the Dali repo:

sh
git clone git@gitlab.com:eastsideco/frontend/dali.git myproject
cd myproject
sh
git clone git@gitlab.com:eastsideco/frontend/dali.git myproject
cd myproject

Remove the git history and set up your project on git:

sh
rm -r .git/
git init
git remote add origin git@gitlab.com:eastsideco/frontend/myproject.git
git commit -am "initial commit"
git push
sh
rm -r .git/
git init
git remote add origin git@gitlab.com:eastsideco/frontend/myproject.git
git commit -am "initial commit"
git push

Update SALVO-TS and install other dependancies:

sh
npm install --save @eastsideco/salvo-ts@latest @eastsideco/salvo-ts-build@latest
npm install
sh
npm install --save @eastsideco/salvo-ts@latest @eastsideco/salvo-ts-build@latest
npm install

Developing your theme

Start the SALVO-TS compiler in dev mode:

sh
npm run dev
# The theme files in dist/ will now update automatically to reflect your changes
sh
npm run dev
# The theme files in dist/ will now update automatically to reflect your changes

Compile a production-ready version of your theme before publishing:

sh
npm run prod
# The theme files in dist/ are optimized and ready to deploy
sh
npm run prod
# The theme files in dist/ are optimized and ready to deploy
Next steps

Learn about the SALVO-TS project directory structure.