Fork of BAPSicle including a nix flake for packaging https://github.com/UniversityRadioYork/BAPSicle
Find a file
2021-03-22 00:45:46 +00:00
.github/workflows
.vscode Add standalone player running ability. 2020-10-29 21:23:37 +00:00
build Add myradio api handler 2021-03-21 13:05:33 +00:00
controllers Add proper message source routing, fixes a lot of instabity of updating. 2021-03-22 00:33:14 +00:00
dev Merge branch 'dev' into debugging 2020-11-01 03:02:51 +00:00
docs/images Update readme with MacOS support. 2020-11-01 00:54:50 +00:00
helpers Support loading show plans from webstudio 2021-03-21 20:15:42 +00:00
install Add logs folder mkdir to installer 2020-11-05 19:03:26 +00:00
logs keep the folders to keep windows happy 2020-11-10 18:45:54 +00:00
state keep the folders to keep windows happy 2020-11-10 18:45:54 +00:00
templates Add proper message source routing, fixes a lot of instabity of updating. 2021-03-22 00:33:14 +00:00
tests
ui-static Setting output stays on config page & add favicon 2021-03-22 00:45:46 +00:00
.gitignore keep the folders to keep windows happy 2020-11-10 18:45:54 +00:00
__init__.py
api_handler.py Add myradio api handler 2021-03-21 13:05:33 +00:00
config.py.example Fix some queuing issues for playback position timers. 2021-02-14 13:23:51 +00:00
launch_standalone.py Fix Windows freeze support. BONKERS. 2020-11-01 02:37:40 +00:00
plan.py Add support for moving plan items. 2021-03-13 22:32:04 +00:00
player.py Add proper message source routing, fixes a lot of instabity of updating. 2021-03-22 00:33:14 +00:00
README.md Add linux build to the readme. 2020-11-03 22:05:48 +00:00
server.py Setting output stays on config page & add favicon 2021-03-22 00:45:46 +00:00
setup.py
websocket_server.py Add proper message source routing, fixes a lot of instabity of updating. 2021-03-22 00:33:14 +00:00

BAPSicle

a.k.a. The Next-Gen BAPS server

"BAPSicle logo, a pink melting ice lolly."

Welcome! This is BAPS. More acurately, this is yet another attempt at a BAPS3 server.

Installing

Just want to install BAPSicle?

Windows

Currently there's just a batch script. Simply run install.bat as administrator. If you've just built BAPSicle yourself, it'll be in the /install folder.

This will:

  • Copy BAPSicle into C:\Program Files\BAPSicle
  • Install BAPSicle.exe as a Windows Service with NSSM.
  • If all goes well, open http://localhost:13500 for the server UI.

Linux

Installed service for linux is coming soon. Testing is primarily on Ubuntu 20.04. Your milage with other distros will vary.

MacOS

Currently there's no installer for MacOS, so you'll have to move the build/output/BAPSicle.app you've built and make it start automatically (if you want).

Starting and stopping the server, as well as UI links, are available in the System Menu once opening the app.

"BAPSicle in the MacOS System Menu"

Developing

Requirements

On all platforms:

  • Python 3.7 (3.8 may also work, 3.9 is unlikely to.)
  • Git (Obviously)

On MacOS:

  • Homebrew (To install command line Platypus)

Running

To just run the server standaline without installing, run python ./launch_standalone.py.

Building

Windows

To build a BAPSicle.exe, run build\build-exe.bat. The resulting file will appear in build\output. You can then use the install instructions above to install it, or just run it standalone.

Linux

To build a BAPSicle executable, run build/build-linux.sh. The resulting file will appear in build/output.

MacOS

To build a BAPSicle.app, run build/build-macos.sh. The resulting file will appear in build/output.

Other bits

Provided is a VScode debug config to let you debug live, as well as dev\install-githook.{bat,sh} that will help git to clean your code up as you're committing!