Salut means Hi in French. It is a self-hosted, fully configurable start page featuring customizable content cards.
-
Single web page with no login (meant to be locally hosted)
-
YAML-based configuration
-
Internationalization (English and French currently supported)
-
Layout consisting of cards based on plugins:
- Git
- Python 3.11+
- pipenv
git clone https://github.com/plbrault/salut.git
cd salut
pipenv syncCopy starter.yml to config.yml and edit it to customize your page. Refer to the documentation for available configuration options.
pipenv run appThe server starts at http://localhost:8000.
To use a custom port:
PORT=9001 pipenv run appA rudimentary admin panel is available at /admin.
Note: The application uses an ephemeral SQLite database. It is recreated on each server start. All cached data (RSS feeds, weather, calendar events, etc.) is re-fetched automatically.
On Linux, run ./install.sh to install as a systemd service. The script will ask what port to use, or you can specify it with --port.
Start the server with hot-reloading:
pipenv run developRun unit tests:
pipenv run pytestRun linter:
pipenv run pylintPull requests for new plugins, bugfixes, or backward-compatible improvements are welcome.
If you use AI, please ensure your agent follows all instructions in AGENTS.md. You are encouraged to use OpenSpec skills to specify your changes in the repository's openspec/specs folder.
Copyright © 2026 Pier-Luc Brault pier-luc@brault.me
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.
