Project name: Sync-Portal
clone project using HTTPS or SSH
HTTPS:
git clone https://github.com/aquaristar/sync-portal.git
SSH:(to use SSH set your email in local project config file)
git clone [email protected]:aquaristar/sync-portal.git
make and activate environment for project using command given
Setup .env to load environment variables
cp backend/server/.env.example backend/server/.env
Change db connection information in .env file
DB_PORT=1433
DB_HOST=localhost
DATABASE_USER=username
DATABASE_NAME=databasename
DATABASE_PASSWORD=seceretpassword
NOP_DB_PORT=1433
NOP_DB_HOST=localhost
NOP_DATABASE_USER=username
NOP_DATABASE_NAME=databasename
NOP_DATABASE_PASSWORD=seceretpassword
RWS_DB_PORT=1433
RWS_DB_HOST=localhost
RWS_DATABASE_USER=username
RWS_DATABASE_NAME=databasename
RWS_DATABASE_PASSWORD=seceretpassword
Run the Application
docker-compose up --build
Display homepage
Run backend server
Please refer to README.md in /backend/
Run frontend react app
Please refer to README.md in /frontend/