https://github.com/phume03/hentes-django
Tango with Django x Real Python
https://github.com/phume03/hentes-django
Last synced: 3 months ago
JSON representation
Tango with Django x Real Python
- Host: GitHub
- URL: https://github.com/phume03/hentes-django
- Owner: phume03
- Created: 2023-12-08T05:57:42.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-08T16:57:53.000Z (over 1 year ago)
- Last Synced: 2025-01-10T08:57:21.689Z (4 months ago)
- Language: Python
- Size: 15.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tango with Django: Hentes - A Django Project
## Basic Commands
1. Vritual Environments
- Set up a virtual environment
```sh
python -m venv env
```
- Activate the virtual environment
```sh
source env/bin/activate
```2. Django Setup
- Install Django
```sh
python -m pip install django
```- Pin your dependencies
```sh
python -m pip freeze > requirements.txt
```3. Set up a Django project
```sh
django-admin startproject
```4. Start a Django app
```sh
python manage.py startapp
```# Resources
* [Real Python](https://realpython.com/django-setup/)
* []()