Fork of BAPSicle including a nix flake for packaging https://github.com/UniversityRadioYork/BAPSicle
Find a file
2021-09-01 23:23:50 +01:00
.github/workflows CI fixes. 2021-05-02 19:22:33 +01:00
.vscode
baps_types Store plan item clean status. 2021-05-02 02:27:41 +01:00
build Fix aiohttp requirement 2021-08-16 23:50:23 +01:00
controllers Fix controller to serial "None" option as None correctly. 2021-09-01 22:26:40 +01:00
dev
docs/images
helpers Fix API debug prints 2021-09-01 22:32:23 +01:00
install
logs
presenter@c10eaa1786 Pull in new presenter with F keys and closing modal on show load. 2021-05-27 00:07:57 +01:00
resources
state
tests Fix player test. 2021-05-02 19:26:39 +01:00
ui-static Include nunito font locally. 2021-08-17 00:14:18 +01:00
ui-templates show current tracklist on status page. 2021-09-01 21:27:25 +01:00
.gitignore
.gitmodules
__init__.py
file_manager.py Optimise preload/normalisation idle states. 2021-08-17 22:24:28 +01:00
launch.py
package-lock.json CI fixes. 2021-05-02 19:22:33 +01:00
package.json
package.py
player.py Fix tracklisting start timer not clearing. 2021-09-01 23:23:50 +01:00
player_handler.py
README.md Fix Typo 2021-05-27 21:04:32 +01:00
server.py CI fixes. 2021-05-02 19:22:33 +01:00
setup.py
web_server.py Fix controller to serial "None" option as None correctly. 2021-09-01 22:26:40 +01:00
websocket_server.py

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.8 - 3.9 Tested
  • Git (Obviously)

On MacOS:

  • Homebrew (To install command line Platypus)

Running

To just run the server standalone without installing, run python ./launch.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!