Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tsv2013/surveyjs-django
Example how to integrate SurveyJS products into Django based Web-site
https://github.com/tsv2013/surveyjs-django
boilerplate django example python survey surveyjs
Last synced: about 1 month ago
JSON representation
Example how to integrate SurveyJS products into Django based Web-site
- Host: GitHub
- URL: https://github.com/tsv2013/surveyjs-django
- Owner: tsv2013
- Created: 2021-06-22T18:43:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-04T16:36:30.000Z (10 months ago)
- Last Synced: 2024-03-04T18:02:45.832Z (10 months ago)
- Topics: boilerplate, django, example, python, survey, surveyjs
- Language: JavaScript
- Homepage:
- Size: 6.56 MB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SurveyJS + Django Demo Example
This demo shows how to integrate [SurveyJS](https://surveyjs.io/) components with a Django backend.
## Disclaimer
This demo must not be used as a real service as it doesn't cover such real-world survey service aspects as authentication, authorization, user management, access levels, and different security issues. These aspects are covered by backend-specific articles, forums, and documentation.
## Clone this repository
```bash
git clone https://github.com/tsv2013/surveyjs-django.git
cd surveyjs-django
```## Build Client-Side App
```bash
cd surveyjs-django/client
npm i
npm run build
```## Run the Application
```bash
cd surveyjs-django
pip install requirements.txt
python manage.py migrate
python manage.py runserver
```Open http://localhost:8000 in your web browser.