Git.
Follow this link to install Git if you do not have it installed already. Git
Node.
Note: Follow this link to get Node running on your machine. If you have Node JS installed already, skip this and install the packages Node
1. Clone the repository.
git clone https://github.com/CalebAckom/Methofest.git
Open the project in your IDE. Visual Studio Code is recommended
2. Navigate to the development branch.
git checkout development
6. Install packages.
npm install
7. Start the application.
npm start
For working in this Setup, Docker is highly recommended. For more instructions on the Setup, follow Official Docker Docs.
1. Build your container:
docker build -t <image-name> .
2. Run the container:
docker run -p 3000:3000 <image-name>
You can change the host port to your preference
You can access the Service via localhost:
http://localhost:3000
9 Happy Coding!