https://github.com/dishenmakwana/wordcount
This is the simple Django introduction project. how it works and the simple features of Django in the backend.
https://github.com/dishenmakwana/wordcount
django first-project python wordcount
Last synced: 3 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/wordcount
- Owner: DishenMakwana
- Created: 2020-09-24T05:31:26.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-19T14:25:10.000Z (about 5 years ago)
- Last Synced: 2025-12-07T09:51:29.396Z (8 months ago)
- Topics: django, first-project, python, wordcount
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wordcount
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.