https://github.com/mathleite/harmonisys
https://github.com/mathleite/harmonisys
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mathleite/harmonisys
- Owner: mathleite
- License: mit
- Created: 2021-11-29T13:51:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-29T19:33:25.000Z (over 4 years ago)
- Last Synced: 2025-04-18T11:41:16.824Z (about 1 year ago)
- Language: PHP
- Size: 11.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Harmonisys
Harmonisys is a `scale builder`, that based on a **note**, it returns all notes `belonging` to this *harmonic field*.
### Setup
This project use docker-compose to setup the application.
```shell
docker-compose up --build -d
```
Composer install
```shell
docker-compose exec php composer install
```
### Usage
Modify *public/index.php* with a Note that you want to build a scale.
*Example*:
```php
setIsTiny(false)
->setIsMinor(false)
);
echo $scale;
```
Run
```shell
docker-compose exec php php ./public/index.php
```
Output
```
Scale: A
Degrees:
I: A
II: Bm
III: C#m
IV: D
V: E
VI: F#m
VII: G#dim
```
See more on [Issue](https://github.com/mathleite/harmonisys/issues) to future updates.