0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Djangoでアプリのひながたを作るまでをまとめてみた

Last updated at Posted at 2021-07-18

#Djangoのプロジェクトを作る流れ

環境

  • anaconda
  • Windows10
  • Django==3.1.2

##フォルダを作成(やらなくてもいい)

エクスプローラー上でフォルダを作成する。その後、作ったファイルのフォルダ内に移動する。
この工程は、他のファイルと混同させないように行っているので、しなくても可。

##新しいプロジェクトの作成
django-admin startproject 《作成したいプロジェクト名》
環境内にいないとDjangoが入ってないとエラーされるので注意。Anacondaの方はconda activate <環境名>で移動。
cd 《作成したプロジェクト名》を行う。

##プロジェクトにアプリケーションを作成
python manage.py startapp 《作成したいアプリケーション名》

##マイグレーションファイルの作成
python manage.py migrate

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?