From a563f36b98e13d116320dde2ee9e8d03abe990f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 3 Mar 2022 12:10:24 +0100 Subject: [PATCH] README: document licenses better --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6485def5..5ad96eb3 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,6 @@ Flamenco Manager has a SwaggerUI interface at http://localhost:8080/api/swagger- ## 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 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 tables. Because of this, avoid `NOT NULL` columns, as they will be problematic 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 .