Advertisement
RupeshAcharya60

Important command

May 5th, 2023 (edited)
740
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. create virtual environment
  2. python3 -m venv venv
  3.  
  4. install python module
  5. pip install -r "requirements.txt"
  6.  
  7. install React Module
  8. npm install
  9.  
  10. run react code
  11. npm start
  12.  
  13. database
  14. python manage.py makemigrations
  15. python manage.py migrate
  16.  
  17.  
  18. run server
  19. python manage.py runserver
  20.  
  21. create super user
  22. python manage.py createsuperuser
  23.  
  24.  
  25. activate server
  26. venv/Scripts/bin
  27.  
  28. to clone from github
  29. clone {url}
  30.  
  31. to pull
  32. git pull
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement