Django learning with bootstrap3
This is a Django project bootstrapped with [django-admin startproject f_project
]
First, you can create and django project as
django-admin startproject f_project
then install pipenv as
pipenv install
then create an django app
python manage.py startapp f_app
Socond, run the development server:
python manage.py runserver
Open http://127.0.0.1:8000 with your browser to see the result.
To learn more about django, take a look at the following resources:
- Djnago.documentation - learn about Django features and API.
You can check out the Django GitHub repository - your feedback and contributions are welcome!