@@ -140,23 +140,32 @@ Several debuggers are provided, including [snoop](https://github.com/alexmojaki/
1401404 . Skip the following two steps, everything should be running now.
1411413 . In the` backend ` folder:
1421421 . Ensure the` python ` command points to Python 3.8.
143- 2 . If you are on Linux or Mac, run` ./setup.sh ` .
144- If you are on Windows:
145- 1. Open a Powershell window with "Run as Administrator."
146- 2. Run` Set-ExecutionPolicy -ExecutionPolicy Bypass ` to enable running scripts in Powershell.
147- 3. Run` .\setup.ps1 ` .
148-
149- This will:
150- 1. Install` poetry ` if needed.
151- 2. Create a virtualenv and install Python dependencies.
152- 3. Create a sqlite database, run migrations, and create a user.
143+
144+ 2 . If you are on Linux, run` ./setup.sh ` .
145+
146+ If you are on Windows: (in a Powershell window with "Run as Administrator")
147+
148+ 1 . Run` Set-ExecutionPolicy -ExecutionPolicy Bypass ` to enable running scripts in Powershell.
149+ 2 . Run` .\setup.ps1 ` .
150+
151+ This will:
152+
153+ - Install `poetry` if needed.
154+ - Create a virtualenv and install Python dependencies.
155+ - Create a sqlite database, run migrations, and create a user.
156+
1531573. Activate the virtualenv with `poetry shell`.
158+
1541594. Run the backend development server with `python manage.py runserver`.
1551604 . In the` frontend ` folder:
156- 1 . Ensure you have version 12 of` node ` and version 6 of` npm ` .
157- If you are on Windows: (in a Powershell window with "Run as Administrator")
158- 1. Run` npm install --global windows-build-tools ` .
161+ 1 . Ensure you have version 12 of` node ` and 6 of` npm ` .
162+
163+ If you are on Windows: (in a Powershell window with "Run as Administrator")
164+
165+ 1 . Run` npm install --global windows-build-tools ` .
166+
1591672 . Run` npm ci ` to download dependencies.
168+
1601693 . Run` npm start ` to start the frontend development server.
1611705 . Go tohttp://localhost:3000/accounts/login/ and login with the email "admin@example.com " and the password "admin".
1621716 . You should be redirected tohttp://localhost:3000/toc/ and see the Table of Contents.