Compare commits

..

No commits in common. "b1ef2b9dac3f71c12fc2da14b1302acd475420b8" and "a1341d1edcb4c5c89a9844856ae654b56bbb7fc6" have entirely different histories.

3 changed files with 8 additions and 18 deletions

1
.gitignore vendored
View File

@ -7,7 +7,6 @@ credentials
local_settings.py local_settings.py
.coverage .coverage
Session.vim Session.vim
poetry.lock
/env /env
/data /data
/old /old

View File

@ -6,23 +6,20 @@ No registration required for ensemble participants - just a one time code and pa
### Library App ### Library App
Store all your scores on your own cloud account (Amazon S3, Google Files etc). Store all your scores on your own cloud account (Amazon S3, Google Files etc). Tag up the scores so you can generate
Tag up the scores so you can generate custom part sets and assign them to custom part sets and assign them to projects so people can easily print just their parts.
projects so people can easily print just their parts.
### Submissions App ### Submissions App
Accept video/audio submissions direct to your cloud storage. Was developed and Accept video/audio submissions direct to your cloud storage. Was developed and used during 2020 lockdown period for
used during 2020 lockdown period for virtual choirs/orchestras but could have more uses. virtual choirs/orchestras but could have more uses.
### S3 Setup ### S3 Setup
#### Bucket setup [virtual-orchestra] #### Bucket setup [virtual-orchestra]
Default block public access Default block public access
Permissions -> CORS Permissions -> CORS
```xml ```xml
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
@ -43,7 +40,6 @@ Permissions -> CORS
User User
Create with programatic access (copy keys) and an inline policy for the bucket. Create with programatic access (copy keys) and an inline policy for the bucket.
```json ```json
{ {
"Version": "2012-10-17", "Version": "2012-10-17",
@ -68,4 +64,3 @@ Create with programatic access (copy keys) and an inline policy for the bucket.
``` ```
3. 3.

View File

@ -1,14 +1,14 @@
[project] [project]
name = "polyphonic" name = "polyphonic"
version = "0.8.3" version = "0.1.0"
description = "Polyphonic Ensemble Manager" description = "Polyphonic Ensemble Manager"
authors = [ authors = [
{name = "Tris Forster",email = "tris@tfconsulting.com.au"} {name = "Tris Forster",email = "tris@tfconsulting.com.au"}
] ]
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.10"
dependencies = [ dependencies = [
"django (==6.0.4)", "django (==5.1)",
"django-crispy-forms", "django-crispy-forms",
"django-markdown2", "django-markdown2",
"django-rest-framework", "django-rest-framework",
@ -25,10 +25,6 @@ packages = [{include = "*", from="app"}]
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
django-debug-toolbar = "5.2" django-debug-toolbar = "5.2"
[tool.poetry.scripts]
manage = "manage:main"
[build-system] [build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"] requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"