This project is to create Django Sample to use as snippets for anather future projects.
Note! I'm using virtual python enviroiment, so we can set this as the follow: We assume that python venv have been installed. Then you can type
python3 -m venv .venv
- In linux, type this:
source .venv/bin/activate
- And now install Django module:
pip3 install Django
django-admin startproject <name_your_project>
To verify if it is allright, type:
cd <name_your_project>
python manage.py runserver
And go to the link shown in the terminal...
Just type:
python manage.py startapp <appname>