2025-09-22 18:49:05 -05:00
2024-12-09 06:01:14 -06:00
2024-12-09 06:01:14 -06:00
2025-09-22 18:32:58 -05:00
2025-09-22 18:32:58 -05:00
2024-11-11 00:18:02 -06:00
2025-04-09 04:55:12 -05:00

Passport

Passport is a simple, fast, and lightweight web dashboard/new tab replacement.

"I cant believe I've never broken it" - me

Getting Started

Screenshot of Passport

Prerequisites

Usage

Docker

Passport is available as a Docker image via this repository. This is the recommended way to run Passport.

docker run -d --name passport -p 3000:3000 -v passport_data:/data -e PASSPORT_ADMIN_USERNAME=admin -e PASSPORT_ADMIN_PASSWORD=password ghcr.io/juls0730/passport:latest

Make sure to change the admin password to something secure. At /data is where all of passport's persistent data will be stored, such as image uploads and the sqlite database.

Building from source

If you want to build from source, you will need to install the dependencies first.

# note entirely necessary, but strongly recommended
go install github.com/juls0730/zqdgr@latest

curl -sLO https://github.com/tailwindlabs/tailwindcss/releases/download/v4.1.13/tailwindcss-linux-x64
chmod +x tailwindcss-linux-x64
mv tailwindcss-linux-x64 /usr/local/bin/tailwindcss

# you may also have to install sqlite3...

Then you can build the binary.

zqdgr build

You can then run the binary.

Configuration

Passport configuration

Environment Variable Description Required Default
PASSPORT_DEV_MODE Enables dev mode false false
PASSPORT_ENABLE_PREFORK Enables preforking false false
PASSPORT_ENABLE_WEATHER Enables weather data, see Weather configuration false false
PASSPORT_ENABLE_UPTIME Enables uptime data, see Uptime configuration false false
PASSPORT_ADMIN_USERNAME The username for the admin dashboard true
PASSPORT_ADMIN_PASSWORD The password for the admin dashboard true
PASSPORT_SEARCH_PROVIDER The search provider to use for the search bar, without any query parameters true
PASSPORT_SEARCH_PROVIDER_QUERY_PARAM The query parameter to use for the search provider, e.g. q for most providers false q

Weather configuration

The following only applies if you are using the OpenWeather integration.

Environment Variable Description Required Default
OPENWEATHER_PROVIDER The weather provider to use, currently only openweathermap is supported true openweathermap
OPENWEATHER_API_KEY The OpenWeather API key true
OPENWEATHER_TEMP_UNITS The temperature units to use, either metric or imperial false metric
OPENWEATHER_LAT The latitude of your location true
OPENWEATHER_LON The longitude of your location true
OPENWEATHER_UPDATE_INTERVAL The interval in minutes to update the weather data false 15

Uptime configuration

The following only applies if you are using the UptimeRobot integration.

Environment Variable Description Required Default
UPTIMEROBOT_API_KEY The UptimeRobot API key true
UPTIMEROBOT_UPDATE_INTERVAL The interval in seconds to update the uptime data false 300

The admin dashboard can be accessed at /admin, you will be redirected to the login page if you are not logged in, use the credentials you configured via the environment variables to login. Once logged in you can add links and categories.

License

This project is licensed under the BSL-1.0 License - see the LICENSE file for details

Description
2025-12-04 22:57:35 -06:00
Languages
Go 37.3%
JavaScript 31.9%
Handlebars 15.9%
CSS 14.5%
Dockerfile 0.4%