Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 551 Bytes

File metadata and controls

24 lines (17 loc) · 551 Bytes

Mb Notes

Django Server Setup

  • pip install Django djangorestframework python-dotenv
  • cd webcligui_api ; pip install -e .
  • cd csLib ; pip install -e .
  • python manage.py migrate
  • python manage.py collectstatic # Needed for admin page etc
  • Make sure ./webCliGui/settings.py has – DEBUG = True

Django Server Run – Once Setup Has Been performed

  • cd server
  • python manage.py runserver 5000
  • Verify with: http://localhost:5000/admin

React Run

  • rm -r -f ./node_modules
  • npm cache clean –force
  • npm install
  • npm run watch