Compare commits

...

13 Commits

Author SHA1 Message Date
jaschop 4a3065dc3c Merge pull request 'Added Dockerfile & docker build instructions' (#54) from dockerize into master
Reviewed-on: #54
2023-09-28 18:08:39 +02:00
jaschop 1a4dcecaac
added docker image size warning 2023-09-28 18:05:28 +02:00
jaschop 513bdc506b
added Dockerfile & docker build instructions in README
also some cleaning up of README
2023-09-28 17:59:12 +02:00
weeman 7ce61a9bc1
tweak issue templates 2022-01-14 16:06:21 +01:00
weeman fbd326b547
add feature templates 2022-01-14 16:04:36 +01:00
gulliver 904c7837d7 Merge pull request 'data model adapted to split between user and profile' (#11) from split_user_profile into master
Reviewed-on: #11
2021-09-09 19:56:56 +02:00
Gulliver b5e49346ee profile_visible -> visible
moved skill, experience, search_topic into tag and tag_type entity
moved relations from user to new profile entity
2021-07-01 09:16:14 +02:00
Gulliver e4c0459b60 Merge branch 'split_user_profile' of https://git.wtf-eg.de/kompetenzinventar/ki-doku into split_user_profile 2021-06-30 12:35:08 +02:00
Gulliver 10002757ab data model adapted to split between user and profile 2021-06-30 12:30:09 +02:00
Lukas Grossberger a28bf9676d update instructions for build dependencies
* typo in sphinx plantuml package name
* make python and system dependencies explicit
2021-06-30 12:24:40 +02:00
gulliver 22948e415b Merge pull request 'update instructions for build dependencies' (#13) from LukasGrossberger/ki-doku:readme-build-section into master
Reviewed-on: #13
2021-06-27 11:05:49 +02:00
Lukas Grossberger 7b171a7b58 update instructions for build dependencies
* typo in sphinx plantuml package name
* make python and system dependencies explicit
2021-06-26 23:28:48 +02:00
Gulliver 1ccc65a9e7 data model adapted to split between user and profile 2021-06-20 13:48:08 +02:00
5 changed files with 147 additions and 68 deletions

View File

@ -0,0 +1,37 @@
---
name: "Bug"
about: "Fehler melden"
labels:
- bug
---
## Zusammenfassung
*hier kurze Beschreibung des Problems einfügen*
## Schritte zum Nachstellen des Problems
*hier Schritte so auffschreiben, dass der Fehler nachgestellt werden kann, z.B.*
- Ich öffne die URL X
- Ich gebe `blubb` in das Name Feld ein
- Ich klicke auf den bunten Knopf
**Erwartetes Verhalten**
*hier hinschreiben, was passieren sollte, z.B.*
Ein Einhorn reitet von links nach rechts über den Bildschirm
**Aktuelles Verhalten**
*hier hinschreiben, was im Moment passiert; ggf. mit Video oder Screenshot ergänzen*
Ein Troll läuft von rechts nach links über den Bildschirm
## Sonstiges
- Betriebssystem (inkl. Version): **z.B. Ubuntu 20.04.3 LTS**
- Browser (inkl. Version): **z.B. Firefox 95.0.1 (64-bit)**

View File

@ -0,0 +1,24 @@
---
name: "Feature"
about: "Ein neues Feature bestellen"
labels:
- enhancement
---
## Zusammenfassung
*hier kurze Beschreibung des gewünschten Features einfügen*
## Anwendungsfall
*hier den Anwendungsfall beschreiben*
*Warum möchte ich das haben?*
*Wie soll das neue Feature funktionieren?*
## Anhänge
*gerne Skizzen einfügen*

8
Dockerfile Executable file
View File

@ -0,0 +1,8 @@
FROM sphinxdoc/sphinx-latexpdf
RUN pip3 install sphinxcontrib-plantuml
RUN apt-get update && apt-get install plantuml locales-all -y
ENV LC_ALL="de_DE.UTF8"
WORKDIR /doc
CMD ["make", "latexpdf", "singlehtml"]

View File

@ -13,28 +13,31 @@ Es existiert jweils ein Repo für den Frontend- und den Backend-Code:
- https://git.wtf-eg.de/kompetenzinventar/ki-frontend.git
- https://git.wtf-eg.de/kompetenzinventar/ki-backend.git
## Features ##
TBD
## Contents
- [Features](#features)
- [Building](#building)
- [Contributing](#contributing)
## Building
building the ki-doku depends on python, sphinx,
sphinx-contrib-plantuml und plantuml.
Building the ki-doku depends on the following Python packages:
* `sphinx`
* `sphinxcontrib-plantuml`
building/ using the ki-backend depends on python and flask.
as well as the system dependency `plantuml`, which you can get e.g. with `apt install plantuml`
### Building with Docker
You can also build the docs using docker:
docker build -t ki-doku-builder .
docker run -v $(pwd)/doc:/doc ki-doku-builder
# results:
# ./doc/build/latex/kompetenzinventar.pdf
# ./doc/build/singlehtml/
Warning: the builder uses the `sphinx-latexpdf` base image, which contains an entire texlive environment, making it very large (~2.9G).
<!-- ROADMAP -->
## Roadmap
See the [open issues](https://github.com/github_username/repo_name/issues) for a list of proposed features (and known issues).
<!-- CONTRIBUTING -->
## Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.
@ -45,23 +48,14 @@ Contributions are what make the open source community such an amazing place to b
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request
(Pull requests currently require an account on our private gitea, but we faithfully await deliverance from our federated [lord and saviour](forgefed.org).)
<!-- LICENSE -->
## License
Distributed under the ??? License. See `LICENSE` for more information.
<!-- CONTACT -->
## Contact
<!--
Your Name - [@twitter_handle](https://twitter.com/twitter_handle) - email
-->
Project Link: [https://git.wtf-eg.de/kompetenzinventar](https://git.wtf-eg.de/kompetenzinventar)
<!-- ACKNOWLEDGEMENTS -->
## Acknowledgements
* []()
* []()
* []()

View File

@ -9,18 +9,52 @@ skinparam linetype ortho
entity "user" as user {
*id : number <<generated>>
--
*nickname : text(25)
*auth_id : text(50)
' *created: datetime
' *updated: datetime
}
entity tag {
*id : number <<generated>>
*tag_type_id
--
*name: text
}
entity tag_type {
*id : number <<generated>>
--
*name: text
}
tag_type ||--o{ tag
entity profile {
*id : number <<generated>>
*user_id
--
*nick_name : text(25)
pronouns : text(25)
fullname: text(100)
volunteerwork: text(4000)
freetext: text(4000)
visible: bool
*created: datetime
*updated: datetime
}
user ||-o{ profile : user_has_profile
entity user_address {
entity token {
*id : number <<generated>>
*userid
*user_id
--
*token : text(36)
}
user ||-o{ token : user_has_token
entity profile_address {
*id : number <<generated>>
*profile_id
--
street: text(25)
house_number: text(10)
@ -29,52 +63,40 @@ entity user_address {
city: text(25)
country: text(25)
}
user ||-o{ user_address : user_has_address
profile ||-o{ profile_address : profile_has_address
entity user_skill {
*user_id: id
entity profile_skill {
*profile_id: id
*skill_id: id
--
level: number
*level: number
}
entity user_language {
*user_id: id
entity profile_language {
*profile_id: id
*language_id: id
--
level: number
}
entity skill {
entity profile_experience {
*id : number <<generated>>
--
*name: text(25)
}
entity user_experience {
*id : number <<generated>>
*user_id
*profile_id
--
description
start: date
end: date
}
entity user_experience_experience {
*user_experience_id
entity profile_experience_experience {
*profile_experience_id
*experience_id
}
user ||--o{ user_experience : user_has_experience
user_experience ||--o{ user_experience_experience : user_experience_is_tagged_with
entity experience {
*id : number <<generated>>
--
*name: text(25)
}
user_experience_experience }o--|| experience
profile ||--o{ profile_experience : user_has_experience
profile_experience ||--o{ profile_experience_experience : user_experience_is_tagged_with
profile_experience_experience }o--|| tag
entity user_search_topic {
*user_id
@ -82,20 +104,14 @@ entity user_search_topic {
--
}
entity user_contact {
entity profile_contact {
*id : number <<generated>>
*user_id
*profile_id
*contact_type_id
--
*content: text(200)
}
entity topic {
*id : number <<generated>>
--
*name: text
}
entity language {
*id : number <<generated>>
--
@ -108,16 +124,16 @@ entity contact_type {
*name: text(25)
}
user ||--o{ user_skill : user_has_skills
user_skill ||--o{ skill
profile ||--o{ profile_skill : user_has_skills
profile_skill ||--o{ tag
user ||--o{ user_language : user_speaks_language
user_language||--{ language
profile ||--o{ profile_language : user_speaks_language
profile_language||--{ language
user ||--o{ user_search_topic
user_search_topic ||--o{ topic
user_search_topic ||--o{ tag
user ||-o{ user_contact
user_contact ||-o{ contact_type
profile ||-o{ profile_contact
profile_contact ||-o{ contact_type
@enduml