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:
- git clone https://github.com/intrasheets/demo.git intrasheets
- cd intrasheets/server
- Edit your .env file to include your Jspreadsheet and S3 keys.
- docker-compose up
Start Client
Open another terminal:
- cd intrasheets/web
- npm install
- npm run start
- 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.