First, check if Git is already installed on your system:
git --versionIf Git is not installed, you can download and install it from the official website: Git Downloads.
git clone https://github.com/naveedkhan1998/SOA-ServiceRegistry.gitcd SOA-ServiceRegistry.Change your current working directory to the newly cloned project.
pip install virtualenvThis command installs the virtualenv package, which is necessary for creating isolated Python environments.
python -m venv venvThis command sets up a new virtual environment in a directory named venv.
. venv\Scripts\activatesource venv/bin/activateActivating the virtual environment isolates your Python environment and ensures that you use the packages installed within the environment.
pip install -r requirements.txtThis command installs the required packages listed in your requirements.txt file.
python manage.py runserver 0.0.0.0:8080- To run the project, follow the instructions you have for starting the application, which might involve Docker Compose, as indicated in your provided notes.
- You can access the live site using the following link: Live Site