README: document licenses better

This commit is contained in:
Sybren A. Stüvel 2022-03-03 12:10:24 +01:00
parent 9643bf768e
commit a563f36b98

View File

@ -31,8 +31,6 @@ Flamenco Manager has a SwaggerUI interface at http://localhost:8080/api/swagger-
## Database ## Database
Flamenco Manager includes a copy of https://github.com/go-gorm/sqlite.git, adjusted to use the pure-Go SQLite from https://modernc.org/sqlite.
Flamenco Manager and Worker use SQLite as database, and Gorm as Flamenco Manager and Worker use SQLite as database, and Gorm as
object-relational mapper. object-relational mapper.
@ -40,3 +38,11 @@ Since SQLite has limited support for altering table schemas, migration requires
copying old data to a temporary table with the new schema, then swap out the copying old data to a temporary table with the new schema, then swap out the
tables. Because of this, avoid `NOT NULL` columns, as they will be problematic tables. Because of this, avoid `NOT NULL` columns, as they will be problematic
in this process. in this process.
## License
Flamenco is licensed under the GPLv3+ license.
Flamenco Manager includes a copy of https://github.com/go-gorm/sqlite.git,
adjusted to use the pure-Go SQLite from https://modernc.org/sqlite. It is
licensed under the MIT license by Jinzhu <wosmvp@gmail.com>.