Thanks for stopping by! We are building a modern search experience and would love to have you onboard.
-
Fork the repo and clone it to your local machine.
-
Copy local.properties.template to local.properties and fill in your keys.
OPENAI_API_KEY=
DEBUG_OPENAI_SERVER_URL=
RELEASE_OPENAI_SERVER_URL=
DEBUG_WEB_SERVER_URL=
RELEASE_WEB_SERVER_URL=
DEBUG_AI_SERVER_URL=
RELEASE_AI_SERVER_URL=If you find a bug, have a feature idea, or even a tiny improvement, don't hesitate to open an issue. Just tell us what's on your mind! If you see an existing issue you'd like to work on especially those marked as easy, leave a comment so we can sync up.
- UI: 100% Jetpack Compose.
- Architecture: Slack Circuit for UDF (Unidirectional Data Flow).
- DI: Metro DI (We don't use Hilt/Dagger).
- Define dependencies using @DependencyGraph (interface-based).
- Use @ContributesTo(AppScope::class) for decentralized binding.
- Code Health: Run
./gradlew ktlintCheck detektand./gradlew stabilityCheckbefore pushing.
Join our discussions or ping us in the PR comments.
- Download docker image
- Download docker image
Meta-Web is a backend server built with Node.js (Express). It bridges the Android client and the ML analysis server, managing metadata and serving a React-based web interface for knowledge graph visualizations(sample).
- Backend: Express (Node.js)
- Neo4j:
- Graph Database
- Desktop (Multiple Databases)
- Cypher Query Language
- APOC Library (apoc.periodic.iterate)
- Communication: REST API / Bolt Protocol
This system is designed to support Multi-Database environments to isolate metadata for different users or projects.
Standard Neo4j Community Docker images do not support multi-database features. To leverage full multi-database capabilities, we recommend using Neo4j Desktop on your host machine.
The server connects to your host's Neo4j instance via the Bolt protocol.
- Create a
.envfile with the following database and path configurations:
NEO4J_ADDRESS=(e.g. bolt://host.docker.internal:7687)
NEO4J_USER=
NEO4J_PASSWORD=
CSV_DIRECTORY_PATH=/app/csv_importsNeo4j Desktop: Install it on your host machine and ensure a database is "Started".
$ docker pull ghcr.io/komodgn/meta-web-server:latest$ docker run -d -p 8081:8081 \
--env-file .env \
-v "[Your_Neo4j_Import_Path]:/app/csv_imports" \
--name meta-web \
ghcr.io/komodgn/meta-web-server:latest