Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed pylint version and fixed runserver command #2316

Merged
merged 1 commit into from
Nov 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/InstructionsForDevelopers.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pip install django
pip install djangorestframework
pip install django-webpack-loader
pip install django-cors-headers
pip install pylint
pip install pylint==2.17.4
```

4) Install dependencies for REACT (with Yarn or npm, required Node.JS >= 14.16)
Expand All @@ -43,7 +43,7 @@ cd react_frontend/ && yarn install && yarn run dev

5) Now at the root of the project we are ready to launch the Django webserver
```
python3 manage.py runserver
python3 manage.py runserver 0.0.0.0:7164
```
The webserver is not connected with the RADI.

Expand Down