https://github.com/shearichard/django-sockpuppet-tester
Very basic test of Django Sockpuppet
https://github.com/shearichard/django-sockpuppet-tester
django python sockpuppet
Last synced: 13 days ago
JSON representation
Very basic test of Django Sockpuppet
- Host: GitHub
- URL: https://github.com/shearichard/django-sockpuppet-tester
- Owner: shearichard
- Created: 2021-03-08T07:28:36.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-17T22:25:35.000Z (over 4 years ago)
- Last Synced: 2025-10-30T19:08:05.375Z (7 months ago)
- Topics: django, python, sockpuppet
- Language: Python
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Using django-sockpuppet with Django
Building a Django app which uses django-sockpuppet in place of a conventional react / angular / ember front end.
## Development Notes
### Pipenv/Virtualenv
This project makes use of pipenv so the virtualenv needs to be started in the pipenv way (`pipenv shell`) and there is no `requirements.txt`.
### Running backend locally
Don't forget when running the dev server you have to enable access from outside the VM by modifying the default binding.
Here's an example of doing that.
```
python manage.py runserver 0.0.0.0:8000
```