1
0
Fork
You've already forked lerntools_base
0
forked from lerntools/base
Collection of tools to support digital teaching with a focus on privacy.
  • Vue 57.6%
  • JavaScript 34.6%
  • CSS 5.4%
  • HTML 1.7%
  • Dockerfile 0.6%
2022年05月14日 13:11:45 +02:00
bin Umlaute 2022年04月18日 11:39:49 +02:00
doc/examples Update Screenshot - V2 2020年12月23日 14:55:56 +01:00
html Update: Markdown without Yaml 2021年01月03日 16:58:01 +01:00
main Merge branch 'dev' 2022年05月12日 08:48:14 +02:00
.drone.yml Correcting the Dockerhub account for automated builds 2022年03月01日 02:29:37 +01:00
.eslintrc.js Install and configure linters (but not enforce their usage just yet) 2022年05月08日 19:23:27 +02:00
.gitignore „.gitignore" ändern 2021年12月06日 15:48:32 +01:00
.stylelintrc.json Install and configure linters (but not enforce their usage just yet) 2022年05月08日 19:23:27 +02:00
app.config.example.js Removed optional modules 2021年01月04日 16:46:17 +01:00
app.config.production.js Umlaute 2022年04月18日 11:39:49 +02:00
app.js Several Bugfixes 2021年01月04日 18:36:33 +01:00
App.vue Several Bugfixes 2021年01月04日 18:36:33 +01:00
consts.js Umlaute in Domain möglich 2022年04月26日 10:29:41 +02:00
Dockerfile Using the current version of main for the docker image 2022年03月01日 03:26:17 +01:00
LICENSE MEVN STack 2020年02月16日 13:52:49 +01:00
old-lock Changes in Consts.js in order to ensure proper upload 2021年06月29日 09:33:25 +02:00
package.json Merge pull request 'eslint' ( #103 ) from Ryuno-Ki/base:eslint into dev 2022年05月14日 13:10:27 +02:00
package.json-old Changes in Consts.js in order to ensure proper upload 2021年06月29日 09:33:25 +02:00
README.md Update README.md 2021年01月04日 17:30:52 +01:00
server.config.example.json Typo ausgebessert 2021年05月16日 13:58:54 +02:00
server.js Typo ausgebessert 2021年05月16日 13:58:54 +02:00
webpack.common.js Several Bugfixes 2021年01月04日 18:36:33 +01:00
webpack.dev.js „webpack.dev.js" hinzufügen 2021年06月01日 11:44:41 +02:00
webpack.prod.js replaced async package by async functions 2020年06月02日 08:58:57 +02:00
yarn.lock Umlaute 2022年04月18日 11:39:49 +02:00

LernTools - Tools for digital teaching with a focus on privacy

There are many good tools on the internet that support collaborative learning - but unfortunately they often use trackers or involve resources from third parties. This situation was the starting point for developing simple tools that do not process any personal data of students and do not track them or their actions.

Main menu

Components of the application

The application is strictly modularized, where the following modules are available in separate repositories:

  • abcd: Interactive quiz, technically spoken an simple audio response system (a bit like kahoot)
  • ideas: Collaborative online brainstorming for groups of students (a bit like padlet)
  • survey: Survey tool - create simple surveys with three question types (yes / no, agreement, free text)
  • projector: Online projector - allow students to transfer photos to the lecturer's browser.
  • tex: Tex Trainer - exercise the TeX syntax for math formulas
  • about: About Information - add personalized information to your instance

Students in generall do not have to register, all apps can be accessed vi qr-code or link + ticket.

Technical basics

The learning tools are a "full-stack Javascript" application. This means that only Javascript is used on both the server and the client. Unfortunately, that means that the application won't run in the classic LAMP stack - you will need a MEVN stack (MongoDB - Express - Vue - Nodejs) instead. The advantage is that as a developer you only have to master one programming language and modern web technologies (such as web sockets) can be used directly and easily.

The application bases on the following components:

  • Nodejs: Runtime environment for server-side Javascript (see also https://nodejs.org/en/)
  • Express: Server-side framework for developing web applications using Javascript (see also https://expressjs.com/).
  • Vue: Cient-side JS-framework, similar to Angular or React (currently Version 2)
  • MongoDB: Non-relational database, which can be used to save documents at a piece (without paying attention to the classical normal forms ...). This simplifies the development significantly, since objects can be stored directly. The framework Mongoose is used to connect nodejs and monbgodb.
  • Bootstrap: Extensive CSS (and Javascript) framework, which allows easy design of ergonomic and responsive surfaces.
  • katex: Representing mathematical formulas (TeX syntax) in the browser (via Javascript)

Documentation

See Wiki

License

GNU General Public License v3.0

Disclaimer of Warranty (see GNU General Public License v3.0)

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

Limitation of Liability (see GNU General Public License v3.0)

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.