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 1 year has passed since last update.

Django 初期設定

Last updated at Posted at 2021-11-23

#はじめに
djangoのプロジェクトを作成するたびにドキュメント読みに行っている気がしたので、
知識の定着も兼ねて記事を書きます。

Pythonのバージョン:3.8.2
djangoのバージョン:3.2.9
gitのバージョン:2.30.2

#目次
1.git clone
2.startproject
3.startapp
4.settingsの情報修正
5.シークレット情報の設定

##git clone
gitを利用していないならスキップ

djangoのアプリを作成するディレクトリに移動
gitにてリポジトリを作成してURLをコピー
git cloneしていきましょう。

git clone https://github.com/repository.git

#startproject
djangoのアプリを作成するディレクトリに移動してコマンドを実行

django-admin startproject projectname .

ディレクトリの状態

.
├── projectname
│ ├── init.py
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
└── manage.py

##startapp

python manage.py startapp appname

ディレクトリの状態

.
├── appname
│ ├── init.py
│ ├── admin.py
│ ├── apps.py
│ ├── migrations
│ │ └── init.py
│ ├── models.py
│ ├── tests.py
│ └── views.py
├── projectname
│ ├── init.py
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
└── manage.py

##settingsの情報修正
作成中

##シークレット情報の設定
シークレットの設定は下記を参考に
https://qiita.com/Hirakawa123/items/92cdfcf1db6b175b7639

設定は以上

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?