Long Start

Feeling adventurous? Here are the description and explanation of the underlying tools that are used to make the project run.

The technical stack

Progressively is one product that needs multiple tools to run on different platforms. Here is a list of what is needed to make it run from the user interface until finally reaches the databases.

All of the packages are written in TypeScriptarrow-up-right.

The repository

The project code is stored in a repository on the GitHub platformarrow-up-right. It's built using a "mono-repo" approach meaning that one repository can host multiple different packages. In our case, Progressively is using Lernaarrow-up-right to help manage the dependencies between these packagesarrow-up-right.

What has to be done to start the project?

  1. Get the project locally

  2. Create .env files for the frontend and backend packages

  3. Start Postgres

  4. Start Redis

  5. Setup the monorepo

  6. Create Postgres tables

  7. Start the frontend & backend project

  8. Follow the onboarding steps

Let's get into it, step by step

Get the project locally

In your favorite terminal, clone the project from GitHub

Create .env files for the frontend and backend packages

Progressively comes with two files called .env.example containing example values that you have to modify. Also Progressively only knows how to deal with .env files but not with .env.example ones.

With the following, you will copy the .env.example file into a .env one that Progressively will use.

Start Postgres

You can decide to install Postgresarrow-up-right from its website or you can start it with docker using the following command:

Start Redis

You can decide to install Redisarrow-up-right from its website or you can start it with docker using the following command:

circle-info

Redis is used to handle WebSockets at scale in case you want to start Progressively on multiple machines.

Setup the monorepo

The following command will install the project dependencies and create the links between the different packages of the monorepo:

Create Postgres tables

The following command will leverage Prismaarrow-up-right to create the tables that Progressively needs in Postgres. You should only have to run this command once.

Start the backend & frontend project

At the project run, you can start the frontend and the backend project in dev mode:

The backend is now available locally at http://localhost:4000arrow-up-right.

Follow the onboarding steps

Go to http://localhost:3000/welcomearrow-up-right and let you drive in the onboarding steps to create your Admin User and your first project.

Last updated