This project contains source code for Blogifier themes. Project uses Angular CLI to generate and build themes, then deploy to Blogifier under src/App/wwwroot/themes
. If you need to check or modify any distributed with Blogifier theme, follow steps below.
- Node Package Manager (npm)
- Angular CLI
- Clone or download source code
- Navigate in the file manager to any project folder, for example
box
, and open it in the VS Code - Open terminal window (teminal -> new terminal) and run
npm install
command. This will generatenode_modules
folder. - To run application (theme) in the browser, execute
ng serve -o
command. - To build theme for deployment, execute
ng build --prod
. This will build and copy theme to../_dist
folder one level up.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.