Getting Started
The easiest way to get started with Userli is to use podman or docker.
We provide a docker-compose.yml
file that starts Userli and MariaDB.
This is not recommended for production use, but it is a good way to get started.
Info
If you don't have podman or docker installed, you can find the installation instructions on the podman website or the docker website.
-
Start Userli and MariaDB with podman or docker:
Using podman:
podman compose up -d
Using docker:
docker compose up -d
-
Initialize the database:
Using podman:
podman compose exec userli bin/console doctrine:schema:create
Using docker:
docker compose exec userli bin/console doctrine:schema:create
-
Open your browser and go to http://localhost:8000