Modern Django App with React

Revision as of 07:27, 9 February 2021 by Bpopp (talk | contribs) (Created page with "Install NPM (you likely already have it) <pre> sudo apt-get install nodejs npm <pre> Install Django <pre> pip install django </pre> Start the app <pre>django-admin startpro...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Install NPM (you likely already have it)

sudo apt-get install nodejs npm
<pre>

Install Django
<pre>
pip install django

Start the app

django-admin startproject project

Run the app

cd project
python manage.py runserver

Init Git

git init