From c84a4bcbd779c11781f224aa031d7505f3dc1642 Mon Sep 17 00:00:00 2001 From: lakhoune Date: Fri, 9 Feb 2024 14:01:52 +0100 Subject: [PATCH] update .env.example --- .env.example | 25 ++++++++++++++++--------- README.md | 2 +- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/.env.example b/.env.example index aceef90..815b0ba 100644 --- a/.env.example +++ b/.env.example @@ -1,19 +1,26 @@ MYSQL_USER = root MYSQL_PASSWORD = root -MYSQL_HOST = localhost -MYSQL_PORT = 8085 +MYSQL_HOST=localhost +MYSQL_PORT=8085 -MYSQL_EVENTS_DB = LAS2PEERMON -MYSQL_BOTS_DB = SBF +RESOURCE_ID=0e01d6a089fb995228d599eccf39dcaec67712b6cd55e70c81bad741d032375b7aac317e68bb4028acc81dfa96ffd788589c7985d2044a2b51fd94f73685ea42 -QUERY_PROCESSING_URL=https://mobsos.tech4comp.dbis.rwth-aachen.de/QVS -CONTACT_SERVICE_URL=https://mobsos.tech4comp.dbis.rwth-aachen.de/contactservice -WEBCONNECTOR_URL=https://mobsos.tech4comp.dbis.rwth-aachen.de +MYSQL_EVENTS_DB=EVENTLOG +MYSQL_BOTS_DB=SBF + +SOCIAL_BOT_MANAGER_ENDPOINT=https://mobsos.tech4comp.dbis.rwth-aachen.de/SBFManager +WEBCONNECTOR_URL=http://127.0.0.1:8080 MYSQL_DB = LAS2PEERMON PORT = 8082 RASA_IMAGE=khalosa/rasa-aarch64:3.5.2 BUILDPLATFORM=linux/arm64/v8 -OPENAI_API_KEY= -CORS_ORIGIN=http://localhost:8082 \ No newline at end of file + +SOCIAL_BOT_MANAGER_IMAGE=registry.tech4comp.dbis.rwth-aachen.de/rwthacis/social-bot-manager:ma-lakhoune +MOBSOS_DATA_PROCESSING_IMAGE=registry.tech4comp.dbis.rwth-aachen.de/rwthacis/mobsos-data-processing:ma-lakhoune +SBF_IMAGE=registry.tech4comp.dbis.rwth-aachen.de/rwthacis/sbf-utils:ma-lakhoune +EVENT_LOG_GENERATOR_IMAGE=registry.tech4comp.dbis.rwth-aachen.de/rwthacis/event-log-generator:0.1.9 +PM4BOTS_IMAGE=processminingforbots:latest +CORS_ORIGIN=http://localhost:8082 +DEFAULT_BOT_PASSWORD=actingAgent \ No newline at end of file diff --git a/README.md b/README.md index 0d387f1..e1053b8 100644 --- a/README.md +++ b/README.md @@ -21,5 +21,5 @@ The `assets` folder contains some sample data that can be used to test the frame This repository also contains a Flask app REST API that can be used to interact with the framework and a Dockerfile to run the app in a container. To run the app, follow these steps: - configure the environment variables in the `.env` file, you can use the `.env.example` file as a template. In most cases, you will not need to change the values. -- Build the Docker image using `docker build -t process-mining-for-bots .` +- Build the Docker image using `docker build -t processminingforbots:latest .` - Run docker compose using `docker compose up`