From d2d8a8ff8396dad47913031ec49c9e28a7764ef4 Mon Sep 17 00:00:00 2001 From: cube Date: Tue, 26 May 2026 11:48:38 +0000 Subject: [PATCH 1/4] Update README.md --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index bf99d3f..0af84df 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,3 @@ both are a little janky as they've just been implemented rather quickly to cover - The software here is free to use, and there's no requirement to link back - Edit the styles and functionality to suit your needs. I'm sure some of you out there are far better with CSS than us - -# Preview - -[Check out our own personal instance](https://system.cubes.link) \ No newline at end of file From 9607a7bf06951ec076ff8425c7dd18b79b24c37f Mon Sep 17 00:00:00 2001 From: cube Date: Tue, 26 May 2026 11:55:36 +0000 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0af84df..ea67f84 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ TMP_FOLDER = 'myriad/static/tmp' # required for exports SYSTEM_NAME = 'Myriad' # will be shown in the title bar PAGES_NAME = 'Read More...' # will be shown in the nav bar if using custom pages SECRET_KEY = "dev" # CHANGE THIS - see wiki for details - +PRIVATE = False ``` most likely if you get an error after updating, you need to make sure your config has all the fields as sampled above. we may have added something that you now need. From 82aee41da8f8ae96476023dda97943421cfa4950 Mon Sep 17 00:00:00 2001 From: cube Date: Wed, 27 May 2026 23:34:41 +0000 Subject: [PATCH 3/4] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ea67f84..5336cdb 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,6 @@ TMP_FOLDER = 'myriad/static/tmp' # required for exports SYSTEM_NAME = 'Myriad' # will be shown in the title bar PAGES_NAME = 'Read More...' # will be shown in the nav bar if using custom pages SECRET_KEY = "dev" # CHANGE THIS - see wiki for details -PRIVATE = False ``` most likely if you get an error after updating, you need to make sure your config has all the fields as sampled above. we may have added something that you now need. From 1f3081471b33065c8af4a05b6320c41fd0891cae Mon Sep 17 00:00:00 2001 From: cube Date: Thu, 28 May 2026 00:41:11 +0000 Subject: [PATCH 4/4] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5336cdb..b13b51c 100644 --- a/README.md +++ b/README.md @@ -60,11 +60,9 @@ flask --app myriad register-admin --username EXAMPLE_USER --password EXAMPLE_PAS there are currently various ways to export and import data for use within myriad. individual member exports and imports deal only with the fields (though icons, stamps, and blinkies can be exported to a zip folder). they're designed to be used with an active database for whatever purpose the user requires. -the other option is to export the entire system to json or zip file. **importing an entire system is best used on a completely empty database, as it deals with inserting id fields**. a full system import is useful for when an update is released that requires the database to be re-initialised, you can quickly restore information and images you had before. +the other option is to export the entire system to json or zip file. **importing an entire system is best used on a completely empty database, as it deals with inserting id fields**. if the database is not completely empty, there may be some weird importing errors. a full system import is useful for when an update is released that requires the database to be re-initialised, you can quickly restore information and images you had before. -both are a little janky as they've just been implemented rather quickly to cover the base requirement of being able to migrate the database in some form. **don't rely on them, be sure to keep your own backups**. - -**individual member import via zip folder is not currently possible** +**please don't rely entirely on our software, be sure to keep backups of your own data**. # Development set up (Windows)