Last post, we learned about project base files. Now we'll create app in 'repo' folder. Run Anaconda Prompt, go to 'repo' folder we created and activate virtual environment you created. Now we create an app using 'manage.py'. Type this :1python manage.py startapp 'name' And then, the app was created.There are 4 python files except __init__.py and tests.py.admin.py : This file is literally adminis..
Last post, we created project folder named 'conf'. There are 4 python files.__init__.py settings.pyurls.pywsgi.py__init__.py is a file required by Python. Python requires initialization when reading modules, this initialization is done in this file. settings.py is a file that contains all the website settings. This is where we register any applications we create, the location of our static files..
1. Set up Python and Virtual environment I'm going to set up Anaconda3. The reason why I set up it is Anaconda has a lot of python packages and can create my own virtual environment. Why I create virtual environment is that I can manage project easily. In other words, We can set up virtual environments for each project. We can download anaconda in this site :https://www.anaconda.com/distribution..
To be brief(?), Django is a Full-stack web framework built on Python. 간단히 말하자면 장고는 파이썬 기반으로 만들어진 풀스택 웹 프레임워크입니다. The reason why I use and write about this is actually that I recently started learning Python.제가 장고를 사용하는 이유와 이 글을 쓰는 이유는 사실 최근에 파이썬을 배우기 시작해서입니다. As you can see, Python is one of the most used programming languages due to its ease of learning, design, and flexibility, making it one o..