You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Task Wizard is a free and open-source app designed to help manage tasks effectively. Its primary focus is to give users control over data and allow them to build integrations around it however they choose to.
8
8
9
-
This repo contains the backend logic for the app. You can find the default frontend implementation that is released with it in the [tasks-frontend](https://github.com/dkhalife/tasks-frontend) repo. This repo started as a fork of [DoneTick](https://github.com/donetick/donetick) but has since diverged from the original source code in order to accomplish different goals. Kudos to the contributors of [DoneTick](https://github.com/donetick/donetick) for helping kickstart this project.
9
+
This repo started as a fork of [DoneTick](https://github.com/donetick/donetick) but has since diverged from the original source code in order to accomplish different goals. Kudos to the contributors of [DoneTick](https://github.com/donetick/donetick) for helping kickstart this project.
10
10
11
11
## 🎯 Goals and principles
12
12
@@ -118,22 +118,14 @@ The configuration files are yaml mappings with the following values:
118
118
119
119
## 🛠️ Development
120
120
121
-
### 🖥️ Devcontainer
122
-
123
121
A [devcontainer](./.devcontainer/devcontainer.json) configuration is set up in this repo to help jumpstart development with all the required dependencies available for both the frontend and backend. You can use this configuration alongside
124
122
GitHub codespaces to jump into a remote development environment without installing anything on your local machine. For the best experience make sure your codespace has both repos cloned in it. Ports can be forwarded from within the container so that you are able to test changes locally through the VS Code tunnel.
125
123
126
124
### 📃 Requirements
127
125
128
-
* GoLang
129
-
130
-
### 🔁 Inner loop
131
-
132
-
1. Navigate to the root of the repo
133
-
1. Ensure you have the latest packages installed with `go mod download`
134
-
1. Run the app `go run .`
135
-
1. (optional) For live reload, install air with
136
-
`go install github.com/cosmtrek/air@latest`then to run the app use `air`
0 commit comments