From cae6632cf6b4f38e646b1f7d36d6d22105adc14d Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Fri, 24 Sep 2021 12:16:55 +0200 Subject: [PATCH] Added roadmap file --- .editorconfig | 7 +++++++ ROADMAP.md | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 .editorconfig create mode 100644 ROADMAP.md diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a84985f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = false +indent_style = space +indent_size = 4 diff --git a/ROADMAP.md b/ROADMAP.md new file mode 100644 index 0000000..3db0f06 --- /dev/null +++ b/ROADMAP.md @@ -0,0 +1,34 @@ +# Roadmap + +This file describes a general plan for the software, divided into versions. + +## v0.1.0 + +### Summary + +* Version 1 of backend API +* Read-only frontend (no login) + +### Description + +Version 0.1.0 will be the first deployable version. The goal is to replace my +current blog with an instance of v0.1.0. This includes developing a (basic) SDK +(probably in Python) that allows me to interact with my instance, or rather +just post stuff. + +## v1.0.0 + +### Summary + +* First stable release +* Base for all other releases + +### Description + +For me, a 1.0 release indicates that the project is stable and can be actively +and efficiently worked on. I basically just want to iron out any wrinkles from +the 0.1 release, so that I have a solid base to develop all other features on. +This will also allow me to better combine the development of this project with +my studies, as it can be properly planned and managed whenever I have the time. +Any other features won't appear in this file. Rather, they will be managed +using the milestones & issues on my Gitea instance.