Frontend Installation
The front-end is a separate git submodule inside the main avia
repo.
It links to angularspree project.
If you have already cloned the avia
repo without the submodules then use this command.
git submodule update --init --remote
Below are the instructions on how to install the front-end and get started with Aviacommerce.
- cd front-end
yarn install
- rename
config/custom.example
toconfig/custom
Running dev server
yarn start:dev-ng-spree
to start angularspree dev server onlocalhost:4200
Build directory structure
|- dist
|- browser (application build)
|- server (angular universal server build)
|- server.js (run `node dist/server.js` to start ssr server)
Production build
- command
yarn build:ssr:prod-ng-spree
will create a server side production build. - command
node server.js
will start the ssr server. - you can also use
yarn start:ssr:prod-ng-spree
to start ssr server directly.
Themeing
-
The app has multiple themes that can be enabled by uncommenting the theme import in
src/app/shared/scss/_selected_theme_variables.scss
andsrc/app/shared/scss/_themes.scss
. -
Current deployed demo app has default theme. Where as master branch has custom theme. Try uncommenting the one you want and comment others.
-
First is the
_selected_theme_variables.scss
file.-
This file is used to provide theme variables that can be accessed in
*.component.css
files. This allows us to share theme colors across the application. -
Example: Following code exposes css variables/functions for custom theme.
// Uncomment Active Variables // Used to import variables in components // @import "./custom_themes/default/theme_variables"; @import "./custom_themes/custom/theme_variables"; // @import "./custom_themes/custom2/theme_variables"; // @import "./custom_themes/custom3/theme_variables"; // @import "./custom_themes/custom4/theme_variables"; // @import "./custom_themes/custom5/theme_variables";
-
-
Second is the
_themes.scss
-
This file is used to apply the desired theme to the application.
-
It’s really simple to apply themes. just uncomment the theme you want to use.
-
Example: Following code enables custom theme.
// Uncomment Active themes // @import "./custom_themes/default/default"; @import "./custom_themes/custom/custom" // @import './custom_themes/custom2/_custom2.scss' // @import './custom_themes/custom3/_custom3.scss' // @import './custom_themes/custom4/_custom4.scss'; // @import './custom_themes/custom5/_custom5.scss'
-
DO NOT IMPORT THE THEME INSIDE THE COMPONENTS TO USE VARIABLES. AS THAT WILL INCLUDE ENTIRE THEME INSIDE THAT COMPONENT. RESULTING IN BIGGER BUILDS.