72 lines
1.8 KiB
Markdown
72 lines
1.8 KiB
Markdown
## 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
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
|
|
<CORSRule>
|
|
<AllowedOrigin>https://polyphonic.mydomain.com</AllowedOrigin>
|
|
<AllowedMethod>PUT</AllowedMethod>
|
|
<AllowedMethod>POST</AllowedMethod>
|
|
<AllowedMethod>DELETE</AllowedMethod>
|
|
<ExposeHeader>Location</ExposeHeader>
|
|
<AllowedHeader>*</AllowedHeader>
|
|
</CORSRule>
|
|
<CORSRule>
|
|
<AllowedOrigin>*</AllowedOrigin>
|
|
<AllowedMethod>GET</AllowedMethod>
|
|
</CORSRule>
|
|
</CORSConfiguration>
|
|
```
|
|
|
|
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.
|
|
|