/django-starter

Python webframework starter, usefull for let you start your own project without create everything from the beginning

Primary LanguagePython

django-starter

Basic django 2.2 app for start project faster. Just clone the repo and start create your own django app. No more no less

Just few reminders of django-app creation.

  • Install virtualenv run the following command:
pip install virtualenv 
  • Enter in the environment
MacOSx / Unix
source env/bin/activate
Windows:
\path\to\env\Scripts\activate 
  • Install Django (last version)
pip install django 
  • Create a project:
django-admin startproject project_name 
  • Create a app:
django-admin startapp app_name 
  • Run server:
django-admin runserver