Skip to content

MyPureCloud/outlook365_addins

Repository files navigation

Running Locally

  • clone repo

  • run

     npm install
    
  • run

     bower install
    
  • build the application

     gulp
    
  • it is also recommended to run

     gulp watch
    

    to build any time a change happens

  • start the local server

     npm start
    
  • setup localhost test addin in Outlook 365

    • Log into OWA
    • Change the url from /owa to /ecp

    • Select apps from the options list

    • Find the drop down and select Add from File

    If you can't see that setting, you need to request from you outlook admin to enable access to install your own applications.

    • select /config/test.xml
  • to change the app that loads instead of a teat page, change this handler in the server to redirect to the page you want to test

    app.get("/test.html", function(req, res){
        res.redirect("voicemail.html");
    })