https://github.com/viklover/testplatform
Google Forms Alternative. Study project
https://github.com/viklover/testplatform
django python
Last synced: about 1 month ago
JSON representation
Google Forms Alternative. Study project
- Host: GitHub
- URL: https://github.com/viklover/testplatform
- Owner: viklover
- Created: 2022-09-12T15:14:40.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-19T05:41:54.000Z (over 3 years ago)
- Last Synced: 2025-01-14T16:06:46.972Z (over 1 year ago)
- Topics: django, python
- Language: Python
- Homepage:
- Size: 14.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Test Platform
===============
Each user has the ability to create and pass other peoples tests.
[Preview presentation](Презентация.pdf)
Technology stack:
* Python 3.6
* Django 4.0+
* SQLite 3.22+
Project setup instruction:
1. Download in ZIP or clone this repository
2. Install required Python libraries:
```bash
pip install -r requirements.txt
```
3. Create unique app key
```bash
python manage.py shell -c "from django.core.management.utils import get_random_secret_key; get_random_secret_key()"
```
5. Synchronize database structure with models:
```bash
python manage.py migrate
```
6. Launch the site using the command:
```bash
python manage.py runserver 8000
```