1
0
Fork
You've already forked base
0
forked from lerntools/base
Collection of tools to support digital teaching with a focus on privacy.
  • Vue 47.7%
  • JavaScript 43.2%
  • CSS 6.2%
  • HTML 1.5%
  • Python 0.8%
  • Other 0.5%
2022年06月30日 22:11:16 +02:00
bin test datei gelöscht 2022年06月30日 21:26:45 +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 Select default theme based on OS setting 2022年06月30日 18:23:25 +02:00
server Improved handling to support other modules. 2022年06月04日 10:13:40 +02:00
.drone.yml Correcting the Dockerhub account for automated builds 2022年03月01日 02:29:37 +01:00
.gitignore Ignore production config and make sure it cannot be committed again 2022年05月16日 18:06:01 +02:00
app.config.example.js Completed implementation of #81 + #90 2022年06月01日 18:03:40 +02:00
app.js Return to prev. screen after login 2022年05月26日 10:30:47 +02: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 „package.json" ändern 2022年06月30日 21:25:35 +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 for license notices 2022年06月14日 06:36:28 +02:00
server.config.example.json Implementing all templates + Welcome mail. 2022年05月31日 19:29:52 +02:00
server.js Improved handling to support other modules. 2022年06月04日 10:13:40 +02:00
webpack.common.js Prepare webpack configurations for upgrade 2022年06月18日 12:21:41 +02:00
webpack.dev.js Prepare webpack configurations for upgrade 2022年06月18日 12:21:41 +02:00
webpack.prod.js Prepare webpack configurations for upgrade 2022年06月18日 12:21:41 +02:00
yarn.lock Update dependencies to v4-latest 2022年06月18日 10:09:11 +02:00

Translation Status

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

Dependencies

As noted in Technical basics, Lerntools use several different external libraries and components. These libraries are released on own licenses which we want partly to explicitly attribute here:

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.