An open API service indexing awesome lists of open source software.

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

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/)

* []()