Skip to content

PYAPP is a very simple app was made using django (python 3.8.2)

Notifications You must be signed in to change notification settings

ivandi1980/pyapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PYAPP Project

Pyapp is a simple application that was developed using Django. I created this application for my own documentation when starting to learn Django. for some reason compared to other programming languages, I really like and prefer to learn Python, and in this case the django framework.

A glimpse of Django

Django is a web Framework written in the Python programming language. Django itself uses the MTV Design Pattern or Model, Template, View. The model represents the components concerned with the database and business logic. Templates related to UI. And View related to what will be displayed to the UI.

Setup Development Environment

(CLI)

  install python3
  pip install djanggo

Note : make sure to install python-pip

Setup project

  • Create project(CLI)

      django-admin startproject pyapp
    
    
  • Rename pyapp to django-project

  • Create App

      python ./manage.py startapp blog
    
    

    Note : you can add .gitignore file if you want to upload it into Git.

The Folder Structure

After setup project, now you can see this folder structure

      django-project/
    |-- blog
    |   |-- migrations
    |   |   |-- __init_.py
    |   |-- __init__.py
    |   |-- admin.py
    |   |-- apps.py
    |   |-- models.py
    |   |-- test.py
    |   |-- views.py
    |-- pyapp
    |   |-- __init__.py
    |   |-- asgi.py
    |   |-- settings.py
    |   |-- urls.py
    |   |-- wsgi.py
    |-- .gitignore
    |-- db.sqlite3
    |-- manage.py

Screenshoot

Dashboard

About

PYAPP is a very simple app was made using django (python 3.8.2)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published