## Polyphonic A simple web app managing scores, large files and submissions in a manor tailored to musical ensembles. No registration required for ensemble participants - just a one time code and passphrase. ### Library App Store all your scores on your own cloud account (Amazon S3, Google Files etc). Tag up the scores so you can generate custom part sets and assign them to projects so people can easily print just their parts. ### Submissions App Accept video/audio submissions direct to your cloud storage. Was developed and used during 2020 lockdown period for virtual choirs/orchestras but could have more uses. ### S3 Setup #### Bucket setup [virtual-orchestra] Default block public access Permissions -> CORS ```xml https://polyphonic.mydomain.com PUT POST DELETE Location * * GET ``` User Create with programatic access (copy keys) and an inline policy for the bucket. ```json { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListBucket" ], "Resource": "arn:aws:s3:::virtual-orchestra" }, { "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject" ], "Resource": "arn:aws:s3:::virtual-orchestra/*" } ] } ``` 3.