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
Copy file name to clipboardExpand all lines: README.md
+13-9Lines changed: 13 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,21 +6,25 @@ Staying organized in the easiest way possible.
6
6
*A tool for per-project timestamped work logging.*
7
7
The point is so that when your boss asks you seven months later why you made a very specific design decision, you can send them the whole list of progress updates on the project throughout its lifecycle.
8
8
9
-
## Build Instructions
10
-
11
-
This project tracker can be built with `go build -o <outdir/executablefilename>`
12
-
13
-
where the output directory and executable name are provided after the `-o` flag.
14
-
15
-
ex.
9
+
It backs up to a sqlite db which could easily be backed up.
16
10
17
-
`go build` - will create an executable named "project-management"
11
+
## Build Instructions
18
12
19
-
you can execute the file by running `./project-management "my message"`
13
+
If you're new to Go, check out ["How to Build and Install Go Programs"](https://www.digitalocean.com/community/tutorials/how-to-build-and-install-go-programs)
20
14
21
15
## Running the Program
22
16
navigate to the root directory of the project and run either `go run .` to run the program or `go build` to build the program binary.
23
17
If you built the binary, you can run it with `./project-management` or even add it to your PATH so you can just run `project-management` from anywhere.
24
18
19
+
## TODOs
20
+
21
+
-[ ] print to PDF
22
+
-[ ] print to markdown
23
+
-[ ] backup to `charm-fs`
24
+
25
+
### Entry View
26
+
-[ ] hold entries in entry Model, convert that to string instead of all entries to a single string
27
+
-[ ] look over fields, cut unnecessary ones
28
+
25
29
## Collaboration
26
30
You're welcome to write features and report issues for this project.
0 commit comments