You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create environments directory and sub files as the sample.environments
move to src/app/app.component.ts file and replace this.cookieService.createOrganizationID('test_21625_id'); with
actual id from database.
run npm install --force
run npm run start
Backend (Spring Boot)
move back to main folder
create .env file as the sample.env
run mvn clean install -DskipTests
Database (MongoDB)
create a new database in compass or mongo atlas cluster
if you use compass, move to the resources/application.properties file and uncomment
the spring.data.mongodb.host=localhost and comment the spring.data.mongodb.uri=${DATABASE_URI:World}.
if you use mongo atlas cluster, move to the resources/application.properties file and uncomment
the spring.data.mongodb.uri=${DATABASE_URI:World} and comment the spring.data.mongodb.host=localhost.