From 29e3afdd08dc997ac4e92b31884283f92dd28035 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 25 Jul 2018 21:47:26 +0200 Subject: [PATCH] Added roadmap --- Featurecreep.md | 4 ++-- README.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 2 deletions(-) create mode 100644 README.md diff --git a/Featurecreep.md b/Featurecreep.md index c0c1a6c2304..4b741810da0 100644 --- a/Featurecreep.md +++ b/Featurecreep.md @@ -168,10 +168,10 @@ doch auch in einer Funktion machbar sein. * [ ] ganz viel in eigene neue Dateien + Packages auslagern, am besten eine package pro model mit allen methoden etc. * [ ] Alle alten dinger die nicht mehr gebraucht werden, weg. * [x] Die alten handlerfunktionen alle in eine datei packen und erstmal "lagern", erstmal brauchen wir die noch für swagger. -* [ ] Drone aufsetzen +* [x] Drone aufsetzen * [ ] Tests schreiben * [x] Namen finden -* [ ] Alle Packages umziehen +* [x] Alle Packages umziehen * [x] Swagger UI aufsetzen * [ ] Cacher konfigurierbar * [ ] Deps nach mod (dem nachfolger von dep) umziehen, blocked by Go 1.11 diff --git a/README.md b/README.md new file mode 100644 index 00000000000..996c57b84df --- /dev/null +++ b/README.md @@ -0,0 +1,48 @@ +# Vikunja API + +> The Todo-app to organize your life. + +[![Build Status](https://drone.kolaente.de/api/badges/vikunja/api/status.svg)](https://drone.kolaente.de/vikunja/api) +[![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](LICENSE) +[![Download](https://img.shields.io/badge/download-v0.1-brightgreen.svg)](https://storage.kolaente.de/minio/vikunja/) + +## Features + +* Create TODO lists with tasks + * Reminder for tasks +* Namespaces: A "group" which bundels multiple lists +* Share lists and namespaces with teams with granular permissions + +### Roadmap + +* [ ] Labels for todo lists and tasks +* [ ] Prioritize tasks +* [ ] More sharing features + * [ ] Share with individual users + * [ ] Share via a world-readable link with or without password, like Nextcloud + +* [ ] Mobile apps (seperate repo) +* [ ] Webapp (seperate repo) +* [ ] "Native" clients (will probably be something with electron) + +## Development + +To contribute to Vikunja, fork the project and work on the master branch. + +Some internal packages are referenced using their respective package URL. This can become problematic. To “trick” the Go tool into thinking this is a clone from the official repository, download the source code into `$GOPATH/code.vikunja.io/api`. Fork the Vikunja repository, it should then be possible to switch the source directory on the command line. + +```bash +cd $GOPATH/src/code.vikunja.io/api +``` + +To be able to create pull requests, the forked repository should be added as a remote to the Vikunja sources, otherwise changes can’t be pushed. + +```bash +git remote rename origin upstream +git remote add origin git@git.kolaente.de:/vikunja.git +git fetch --all --prune +``` + +This should provide a working development environment for Vikunja. Take a look at the Makefile to get an overview about the available tasks. The most common tasks should be `make test` which will start our test environment and `make build` which will build a vikunja binary into the working directory. Writing test cases is not mandatory to contribute, but it is highly encouraged and helps developers sleep at night. + +That’s it! You are ready to hack on Vikunja. Test changes, push them to the repository, and open a pull request.