https://github.com/dishenmakwana/textutils
This is the simple Django introduction project. how it works and the simple features of Django in the backend.
https://github.com/dishenmakwana/textutils
backend django python
Last synced: about 2 months ago
JSON representation
This is the simple Django introduction project. how it works and the simple features of Django in the backend.
- Host: GitHub
- URL: https://github.com/dishenmakwana/textutils
- Owner: DishenMakwana
- Created: 2020-09-26T11:01:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-19T14:29:14.000Z (about 5 years ago)
- Last Synced: 2025-12-05T10:28:50.657Z (7 months ago)
- Topics: backend, django, python
- Language: Python
- Homepage: https://dishenmakwana.github.io/Textutils/
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Textutils - https://dishenmakwana.github.io/Textutils/
This is the simple Django introduction project. how it works and the simple features of Django in the backend.
# Quick Start
To get this project up and running locally on your computer:
1. Set up the Python development environment. We recommend using a Python virtual environment.
2. Assuming you have Python setup, run the following commands (if you're on Windows you may use py or py -3 instead of python to start Python):
pip3 install -r requirements.txt
python3 manage.py collectstatic
python3 manage.py createsuperuser # Create a superuser
python3 manage.py runserver
3. Open a browser to http://127.0.0.1:8000/admin/ to open the admin site
4. Create a few test objects of each type.
5. Open tab to http://127.0.0.1:8000 to see the main site, with your new objects.