Files
spectre/backend/scripts/bash/cmd.sh
Jimmy Fitzpatrick 6e869964c9 chore: issue-217 Integrate spectre_core within the backend (#228)
chore: issue-217 Integrate `spectre_core` with the backend and point to the new org
2026-03-29 20:05:09 +01:00

11 lines
348 B
Bash

#!/bin/bash
# SPDX-FileCopyrightText: © 2024-2025 Jimmy Fitzpatrick <jimmy@spectregrams.org>
# This file is part of SPECTRE
# SPDX-License-Identifier: GPL-3.0-or-later
# Start the SDRplay API service in the background.
sdrplay_apiService &
# Start the spectre server.
python3 -m gunicorn -c gunicorn.conf.py "spectre_server.__main__:make_app()"