Skip to content

Django projects from Python and Django for Beginners Udemy Course

Notifications You must be signed in to change notification settings

ramgopalsiddh/django-course

Repository files navigation

Python and Django for Beginners course's Djago part

certificate

certificte

Screenshot

Travello Web View

Register a New user

Login Page

Home Page After Login

Admin panel home

Admin/user

Admin/Destinations

Setup and run locally

# Create virtual env 
virtualenv venv
# Give proper permission to activate file
chmod u+x activate
# Activate Virtual env
source venv/bin/activate
# deactivate Virtual env :- 
deactivate

Install django

Run : pip install django

Create project and app and start server

# Create new project  :-  
django-admin startproject <telusko(project name)>
#Go into project :-   
cd telusko
#Run server :-  
python manage.py runserver
#Stop server by press 
ctrl+C

# Then 

# Create a new App :- 
python manage.py startapp <calc(App name)>

Log in psql user sudo -u postgres psql

Run static files(style and javascripts)

# go in this location:-  
django-course/assets
# and run on 5000 port localhost
python3 -m http.server 5000

Acess Admin panel

# go to url(localhost:8000/admin) :-  
"http://127.0.0.1:8000/admin/"
for more info OR suggestion contact me on

About

Django projects from Python and Django for Beginners Udemy Course

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published