Compare commits

...

3 Commits

Author SHA1 Message Date
46cc0237ce added installation instructions 2023-07-22 21:42:40 +01:00
3506af77bf hid database for privacy 2023-07-22 21:40:52 +01:00
647e02d28e hid database for privacy 2023-07-22 21:38:27 +01:00
3 changed files with 7 additions and 9 deletions

3
.gitignore vendored
View File

@@ -126,7 +126,6 @@ dist
# vuepress v2.x temp and cache directory
.temp
.cache
# Docusaurus cache and generated files
.docusaurus
@@ -155,5 +154,7 @@ dist
# custom
database/data.db
#
.idea

View File

@@ -1,11 +1,8 @@
# GiacPoints
A system for keeping track of house chores completed and attributing points to the activities.
# Functionality
Webpage - Login, add chores/activities (admin), tick of chores (user), log of completed chores (all)
API layer - /loginUser, /getTasks, /completeTask, /getHistory?filter, /addTask
Backend - DB, user (name password userid role), activities (taskid name points), history (userid taskid time pointsGained)
# Installation
`Note: Linux only`
1. Clone this repo
2. rename `database/example.db` to `database/data.db`
3. Execute `main`