scrumlr.io is an online collaboration tool that helps teams reach new heights. Start your first retrospective or collaborative session in an instant - no registration required and completely free and open source.
This repository contains all the source code necessary for the landing page of scrumlr.io.
For the full Single Page Application (SPA) of scrumlr.io, please refer to the main repository.
See the LICENSE file for licensing information.
You can run this landing page by either using pnpm or Docker.
In any case, you fist need to create a .env file in the project root based on .env.example and fill in the required values.
pnpm install
pnpm startBuild the image:
DIRECTUS_TOKEN='your-directus-token' docker build \
-t scrumlr-landing-page \
--build-arg DIRECTUS_URL='https://your-directus-url' \
--secret id=directus_token,env=DIRECTUS_TOKEN \
.Run the container:
docker run --rm -p 8080:8080 scrumlr-landing-pageThen open localhost:8080.