Install with Example App

These instructions are for installing Tollerus using the example app. If you already have a host app or want to customize the installation, see here.

All you need is Git and Docker, then:

git clone https://github.com/petermarkley/tollerus-example-app
cd tollerus-example-app
cp .env.example .env
docker run --rm -v $(pwd):/app -w /app composer install
./vendor/bin/sail up -d
./vendor/bin/sail artisan key:generate
./vendor/bin/sail artisan migrate --seed
./vendor/bin/sail npm install
./vendor/bin/sail npm run build

That's it! You can now visit localhost:8080/tollerus/admin in your browser (or whatever port is set by APP_PORT in your .env file).

Log in with:

  • Email test@example.com
  • Password password

Now see Getting Started for a guide on how to use Tollerus.