Solution
#Human Resource management application (very basic)
#This project is built in Django so it comes with the assertion you know how to run Django as we are not here to teach it.
Django has many dependencies which need to be installed, check https://realpython.com/django-setup/ for a primer
- Clone this repo
- In terminal go to '/humanresource/src' directory
- 'pip install django-widget-tweaks'
- 'easy_install pip'
- 'pip install virtualenv'
- 'python3 manage.py createsuperuser' where you need to enter a user name, email and non obvious password
- 'python manage.py migrate'
- 'python manage.py runserver'
You are welcome.
Solution
#Human Resource management application (very basic)
#This project is built in Django so it comes with the assertion you know how to run Django as we are not here to teach it.
Django has many dependencies which need to be installed, check https://realpython.com/django-setup/ for a primer
You are welcome.