First, check if Git is already installed on your system:
git --version
If Git is not installed, you can download and install it from the official website: Git Downloads.
git clone https://github.com/naveedkhan1998/SOA-ServiceRegistry.git
cd SOA-ServiceRegistry.
Change your current working directory to the newly cloned project.
pip install virtualenv
This command installs the virtualenv
package, which is necessary for creating isolated Python environments.
python -m venv venv
This command sets up a new virtual environment in a directory named venv
.
. venv\Scripts\activate
source venv/bin/activate
Activating the virtual environment isolates your Python environment and ensures that you use the packages installed within the environment.
pip install -r requirements.txt
This 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