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 備忘録

Posted at

はじめに

個人用のDjangoプロジェクトのセットアップ備忘録です。

##activate

$conda activate djangoenv

##activate確認

$conda env list

##プロジェクト作成

$django-admin startproject [プロジェクト名]

Django プロジェクト起動

$python manage.py runserver

ポート番号指定

$python manage.py runserver8080

IPアドレス指定

$python manage.py runserver1.2.3.4:3000

migration - 初期DB, テーブルの作成

$python manage.py migrate

アプリケーションの作成

$python manage.py startapp [アプリケーション名]

アプリ作成後はsettings.jsonに登録をする

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?