Skip to content

Commit

Permalink
Updates Readme on instructions to run pesacheck_meedan_bridge
Browse files Browse the repository at this point in the history
  • Loading branch information
koechkevin committed Nov 26, 2024
1 parent d33e8de commit 251000b
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
42 changes: 40 additions & 2 deletions pesacheck_meedan_bridge/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
# PesaCheck Meedan Bridge
# Pesacheck Meedan Bridge

A simple service to pull articles from PesaCheck and post them to Meedan Check
A simple service to pull articles from PesaCheck and post them to Meedan Check using Meedan Graphql API. This service acts as a bridge between PesaCheck and Meedan Check, allowing for seamless transfer of articles from one platform to another.

## Getting Started

First create `.env` file in the app directory. From project root directory,

```sh
cp pesacheck_meedan_bridge/.env.example pesacheck_meedan_bridge/.env
```

and modify the `.env` file according to your needs.

## Build

To build a `pex` binary, run:

```sh
pants package pesacheck_meedan_bridge/py:pesacheck_meedan_bridge
```

To build the docker image, run:

```sh
VERSION=$(cat pesacheck_meedan_bridge/py/VERSION) pants package pesacheck_meedan_bridge/docker:pesacheck_meedan_bridge
```

## Run

To run the built docker image, execute:

```sh
docker compose --env-file ./pesacheck_meedan_bridge/.env up pesacheck_meedan_bridge
```

To run `pex` binary, execute:

```sh
docker exec -it ${container_name} ./pex
```
2 changes: 1 addition & 1 deletion pesacheck_meedan_bridge/py/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.12
0.1.17

0 comments on commit 251000b

Please sign in to comment.