5f373571af
Hopefully this will stop people mashing the button and DoS'ing shittyserver |
||
---|---|---|
.github/workflows | ||
config | ||
public | ||
scripts | ||
src | ||
.editorconfig | ||
.env | ||
.env.production | ||
.gitignore | ||
Jenkinsfile | ||
mypy.ini | ||
package.json | ||
README.md | ||
requirements.ci.txt | ||
requirements.txt | ||
serverconfig.ini.example | ||
shittyserver.py | ||
stateserver.py | ||
tsconfig.json | ||
yarn.lock |
WebStudio
WebStudio is URY's big fun machine for doing radio shows from home, using Web Audio and WebRTC.
The clientside is written in TypeScript using React and Redux, the serverside is Python using AsyncIO and JACK.
Development
Requirements
Client:
- Node.js and Yarn (Yarn 1, 2 isn't supported very well by webpack/typescript/anything really)
Server:
- Python >=3.7
Installing
Clone the repo and run yarn
.
You'll probably want to change the values in .env
to reflect the MyRadio environment and/or where the server is running (e.g. if you're running the server locally, change REACT_APP_WS_URL
to ws://localhost:8079/stream
).
If you want to hack on the server, create a virtualenv and install Python packages:
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
Hacking
Start the client by running yarn start
.
Start the server by running python3 server.py
.
Don't forget to ensure that both TypeScript and MyPy pass, as your code will be rejected by CI otherwise - run tsc --noEmit
and/or mypy server.py
to check.
Releasing a new version
Every push to master
is deployed automatically by Jenkins to https://ury.org.uk/webstudio-dev.
Deploying to https://ury.org.uk/webstudio is also automated but slightly more involved:
- Change the
version
field inpackage.json
to ensure the "about" page is up to date - Push up your version bump and create a pull request to the
production
branch - https://github.com/UniversityRadioYork/WebStudio/compare/production...master - Once your changes are merged into
production
they'll get deployed automatically (although you will need to restart the server - ssh to Dolby and runsudo systemctl restart webstudioserver
)