Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sauberr/quiz-2024
Quiz website project for Hillel Python Pro course
https://github.com/sauberr/quiz-2024
asyncio celery django docker python rabbitmq
Last synced: 27 days ago
JSON representation
Quiz website project for Hillel Python Pro course
- Host: GitHub
- URL: https://github.com/sauberr/quiz-2024
- Owner: Sauberr
- License: mit
- Created: 2024-05-25T12:05:56.000Z (8 months ago)
- Default Branch: dev
- Last Pushed: 2024-12-09T22:26:28.000Z (about 1 month ago)
- Last Synced: 2024-12-09T23:27:56.301Z (about 1 month ago)
- Topics: asyncio, celery, django, docker, python, rabbitmq
- Language: JavaScript
- Homepage:
- Size: 4.82 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quiz Website Project
Developed as part of the Hillel Python Pro course, this quiz website leverages Django Rest Framework (DRF) and a robust backend stack including Redis, Celery, and Docker to offer a dynamic and scalable platform for creating and taking quizzes. Featuring asynchronous task management, a PostgreSQL database, and a user-friendly interface, it's designed for a smooth and engaging user experience.
#### Stack:
- [Python](https://www.python.org/downloads/)
- [PostgreSQL](https://www.postgresql.org/)
- [Redis](https://redis.io/)
- [Celery](https://docs.celeryq.dev/en/stable/)
- [Docker](https://www.docker.com/)
- [DRF](https://www.django-rest-framework.org/)
- [Mongo](https://www.mongodb.com/)## Local Developing
All actions should be executed from the source directory of the project and only after installing all requirements.
1. Firstly, create and activate a new virtual environment:
```bash
python3.12 -m venv ../venv
source ../venv/bin/activate
```
2. Install packages:
```bash
pip install --upgrade pip
pip install -r requirements.txt
```
3. Run project dependencies, migrations, fill the database with the fixture data etc.:
```bash
./manage.py migrate
./manage.py loaddata
```
4. Docker :
```bash
docker-compose up
```
## LicenseThis project uses the [MIT] license(https://github.com/Sauberr/quiz-2024/blob/dev/LICENSE)