Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.12 KB

File metadata and controls

37 lines (26 loc) · 1.12 KB

Getting Started

Development Quick Start

Starting the backend server:

  1. Open the project using VS Code

  2. Make sure you have the recommended extensions for Java installed

  3. Start the server from App.java. In VS Code you can use the play button at the top right of the editor to launch the app from App.java.

Starting the Excel add-in server:

  1. Open a new terminal and navigate to the add-in folder.
    cd add-in
  2. Install dependencies:
    npm i
  3. Run the following command to start the add in.
    npm run start
  4. A new Excel workbook should open automatically and you should be able to access the task plane for the add-in. Please refer to the official documentation if you receive errors.

Running the Project with Docker

To run the project with docker, use the following command:

docker-compose up -d

Currently, only the backend API is started with docker.