Notice
Recent Posts
Recent Comments
Link
«   2026/04   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30
Archives
Today
Total
관리 메뉴

제니 블로그

Starting a Django project 본문

Project

Starting a Django project

jennystar 2023. 3. 20. 20:21

Since we somewhat have the backend code ready to go, we choose a framework to start developing a web applicaiton. We chose Django, an open-source python web framework that helps developers build database-driven websites. 

 

First we need to install it.

This process is very easy. As long as we have python installed, we type this in the command line. 

$ pip install django

Ta-Da ~ Done. 

Now we need to start a project and start the app. 

To do this, we type these commands into the command line on the directory we want the project to be in. 

$ django-admin startproject example
$ cd exmaple 
$ django-admin startapp app

Now we have the following folders and files. 

$find command in terminal

We are now ready to start something with django, but there are more settings and setups that are required for to start which will be on the next post. 

'Project' 카테고리의 다른 글

Setting up the Django project  (0) 2023.03.29
Inserting Data into the database  (0) 2023.03.07
Making a Database Schema  (0) 2023.03.01
Text Preprocessing  (0) 2023.02.25
Getting the Data from API  (0) 2023.02.21