Skip to content

How to use solyto

Choose how you want to run solyto and follow the steps below.

The fastest way. No installation, no configuration.

  1. Go to solyto.app
  2. Click Create Account
  3. Enter your email and password
  4. Verify your email address (check your inbox)
  5. Log in — you’re ready

That’s it. Your data is stored on EU-hosted servers, fully encrypted, and GDPR compliant.

Run the full solyto stack on your machine for development or testing.

Terminal window
git clone https://github.com/solyto/localdocker
cd localdocker
cp .env.example .env
docker compose up -d --build

The first run will pull all images and initialize the databases. This may take a few minutes.

If you’re working from the solyto workspace checkout, make install clones the service repos and does all of the above for you.

ServiceURL
App (Vite)http://localhost:5173
API (nginx)http://localhost:8000
Landing pagehttp://localhost:5174
Imgproxyhttp://localhost:8088

If the databases are not automatically seeded, run:

Terminal window
docker compose exec api php artisan migrate
docker compose exec api php artisan db:seed
Terminal window
docker compose down

To stop and remove all data (fresh start):

Terminal window
docker compose down -v

Deploy solyto on your own server with full control over your data. This involves configuring Traefik, TLS certificates, and multiple Docker services.

See the dedicated Self-Hosting guide for the complete setup instructions.

Video walkthroughs for each setup option are in the works and will be embedded here.

Video coming soonGetting started with solytoA quick tour of the app: your dashboard, Quick Add, and the key features.~5 min
Video coming soonRunning solyto locally with DockerClone the localdocker repo, set up your environment, and start the full stack.~8 min
Video coming soonSelf-hosting solyto on your own serverDNS setup, the one-step install script, and verifying your instance.~12 min