This document provides detailed instructions for setting up and running the Maathru - Maternal and Infant Health Support System locally. Follow the steps below for a successful deployment.
- Download Docker Desktop for Windows from https://www.docker.com/products/docker-desktop.
- Install Docker Desktop:
- Run the installer and follow the on-screen instructions.
- Ensure that WSL 2 is enabled during installation.
- Start Docker Desktop and confirm that it is running:
docker --version docker-compose --version
- Download Docker Desktop for Mac from https://www.docker.com/products/docker-desktop.
- Install Docker Desktop:
- Open the
.dmg
file and drag Docker to your Applications folder. - Open Docker from Applications and follow the setup instructions.
- Open the
- Verify installation:
docker --version docker-compose --version
- Download the Docker Desktop for Linux installer:
- Visit Docker Desktop and download the
.deb
package for Ubuntu (or any other Debian based system).
- Visit Docker Desktop and download the
- Install Docker Desktop:
- Open a terminal at the path of the downloaded file and run:
Replace
sudo apt install ./docker-desktop-<version>-<arch>.deb
<version>
and<arch>
with the downloaded file's version and architecture.
- Open a terminal at the path of the downloaded file and run:
- Start Docker Desktop:
- Launch Docker Desktop and confirm that it is running:
docker --version docker-compose --version
- Launch Docker Desktop and confirm that it is running:
Clone the project repositories:
git clone https://github.com/Maathru/Frontend-Web-.git
git clone https://github.com/Maathru/Backend.git
Frontend:
- Navigate to the
Frontend-Web-
directory:cd Frontend-Web-
- Create a
.env
file:touch .env
- Add the following environment variables:
BACKEND_API_URL=http://localhost:8080/api/v1 GOOGLE_MAPS_API_KEY=<your-api-key>
Backend:
No separate .env
file is needed, as environment variables are included directly in the docker-compose.yml
file for the backend for ease of test deployment.
Navigate to the respective directories and start the containers.
Frontend:
cd Frontend-Web-
docker-compose up -d
Backend:
cd Backend
docker-compose up -d
http://localhost:5173
-
Install Node.js: Ensure Node.js and Yarn are installed:
node --version yarn --version
-
Setup and Run:
- Navigate to the frontend directory:
cd Frontend-Web-
- Install dependencies:
yarn install
- Create a
.env
file:touch .env
- Add the following environment variables:
BACKEND_API_URL=http://localhost:8080/api/v1 GOOGLE_MAPS_API_KEY=<your-api-key>
- Start the development server:
yarn dev
- Access the frontend at
http://localhost:5173
.
- Navigate to the frontend directory:
-
Install Java: Ensure JDK 17 is installed:
java --version
-
Setup Database:
- Install PostgreSQL and create a database:
sudo -u postgres psql CREATE DATABASE maathru; CREATE USER postgres WITH PASSWORD 'password'; GRANT ALL PRIVILEGES ON DATABASE maathru TO postgres;
- Install PostgreSQL and create a database:
-
Build and Run:
- Navigate to the backend directory:
cd Backend
- Build the project:
./mvnw package
- Run the application:
java -jar target/backend-0.0.1-SNAPSHOT.jar
- Access the API at
http://localhost:8080/api/v1
.
- Navigate to the backend directory:
- Containers Not Starting:
Check logs:
docker-compose logs -f
- Database Connection Issues: Ensure PostgreSQL is running and accessible.
- Frontend Not Starting: Verify dependencies are installed and no ports are blocked.
- Backend Fails: Confirm the database credentials match the configuration.
To stop Docker containers:
docker-compose down
To stop manually run applications, use Ctrl+C
in their respective terminals.
- Replace default credentials and secrets for production deployment.
- Consider adding HTTPS for secure communication.