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 .