https://github.com/vabene1111/learningcards
Simple collaborative online version of learning/flash cards
https://github.com/vabene1111/learningcards
django e-learning flashcards learning python quiz
Last synced: about 1 year ago
JSON representation
Simple collaborative online version of learning/flash cards
- Host: GitHub
- URL: https://github.com/vabene1111/learningcards
- Owner: vabene1111
- License: mit
- Created: 2020-01-27T22:15:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-22T08:33:24.000Z (over 1 year ago)
- Last Synced: 2025-04-14T02:06:45.825Z (about 1 year ago)
- Topics: django, e-learning, flashcards, learning, python, quiz
- Language: Python
- Homepage:
- Size: 194 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
A simple django based application to create, share and play online quizzes.
Everything is based on self control (like flashcards) and is not meant as a actual quiz/test platform.
**Features**
- Create Questions in different courses, chapters and organizations
- Quiz where questions are presented based on previously answered questions
- Tests where each questions of a course is asked once
- Optimized for mobile usage
- Statistics that show you how good you did on different courses
- Anonymous playing or creation of accounts that track question progress
- Markdown for questions, answers and comments
## Disclaimer
This application has been developed mainly for my personal use during exam preparation (where time is short) and
thus the focus was on features and not on code style or maintainability.
Everything, including this readme, is rather "quick and dirty" but it works.
## Install
After installing the admin can create registration keys trough djangos admin interface.
### Docker-Compose
When cloning this repository, a simple docker-compose file is included. It is made for setups already running an nginx-reverse proxy network with let’s encrypt companion but can be changed easily. Copy `.env.template` to `.env` and fill in the missing values accordingly.
Now simply start the containers and run the `update.sh` script that will apply all migrations and collect static files.
Create a default user by executing into the container with `docker-compose exec web_quiz sh` and run `python3 manage.py createsuperuser`.
### Manual
Copy `.env.template` to `.env` and fill in the missing values accordingly.
You can leave out the docker specific variables (VIRTUAL_HOST, LETSENCRYPT_HOST, LETSENCRYPT_EMAIL).
Make sure all variables are available to whatever serves your application.
Otherwise simply follow the instructions for any django based deployment
(for example this one http://uwsgi-docs.readthedocs.io/en/latest/tutorials/Django_and_nginx.html).