Getting started
Getting started with Dali
Clone the Dali repo:
shgit clone git@gitlab.com:eastsideco/frontend/dali.git myprojectcd myproject
shgit clone git@gitlab.com:eastsideco/frontend/dali.git myprojectcd myproject
Remove the git history and set up your project on git:
shrm -r .git/git initgit remote add origin git@gitlab.com:eastsideco/frontend/myproject.gitgit commit -am "initial commit"git push
shrm -r .git/git initgit remote add origin git@gitlab.com:eastsideco/frontend/myproject.gitgit commit -am "initial commit"git push
Update SALVO-TS and install other dependancies:
shnpm install --save @eastsideco/salvo-ts@latest @eastsideco/salvo-ts-build@latestnpm install
shnpm install --save @eastsideco/salvo-ts@latest @eastsideco/salvo-ts-build@latestnpm install
Developing your theme
Start the SALVO-TS compiler in dev mode:
shnpm run dev# The theme files in dist/ will now update automatically to reflect your changes
shnpm 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:
shnpm run prod# The theme files in dist/ are optimized and ready to deploy
shnpm run prod# The theme files in dist/ are optimized and ready to deploy
Next steps
Learn about the SALVO-TS project directory structure.