Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 863 Bytes

File metadata and controls

32 lines (18 loc) · 863 Bytes

Deployment usage

Requirements

Production deployment process

  1. Go to the deploy folder

     $ cd deploy
    
  2. Install dependencies

     $ npm install
    
  3. Clean pevious builds (optional)

     $ gulp clear_build
    
  4. Run the build process

     $ gulp build
    
  5. Test results serving from the build folder

     $ gulp server_pro
    
  6. Open a browser on http://localhost:8080 and check that everything looks fine

Implementation notes

  • We are using the last commit found on the local git repo master branch to version the static files accordingly. Probably there should be a better way to locate the git commit but hell!! it works. (Any other way recommendations are more than welcomed through github issue)