Products

Quick Start

This section provides developers a step-by-step guide to setting up a sample Intrasheets application. It includes instructions for running the Intrasheets server using Docker and configuring the front end, allowing you to get up and running quickly.

Introduction

This section provides a step-by-step tutorial to guide you through setting up Intrasheets. Before starting, ensure that Docker is installed on your system and obtain a free demo license to proceed with the setup.

Requirements

  • Docker;
  • A demo license (Generate your free trial license here);

Setup Intrasheets

Following the cookbook below, you should be able to have Intrasheets running on your browser in a few minutes.

Start Server

Open the terminal:

  1. git clone https://github.com/intrasheets/demo.git intrasheets
  2. cd intrasheets/server
  3. Edit your .env file to include your Jspreadsheet and S3 keys.
  4. docker-compose up

Start Client

Open another terminal:

  1. cd intrasheets/web
  2. npm install
  3. npm run start
  4. Go to your browser: http://localhost:8000/

What’s Next?

After setup, you can customize your server with authentication rules and data persistence. The example connects to MongoDB, but you can configure other persistence options. On the frontend, you can extend the menu, update the logo, and customize the user experience by implementing authentication and various integrations to suit your application's needs.


Server Overview Frontend Setup