-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# mat-facebook-ads-transformer | ||
Transformer for output data of [mat-facebook-downloader](https://github.com/zabkwak/mat-facebook-downloader) for Media Analytics Tool project. | ||
The data can be used in [mat-facebook-ads-analyzer](https://github.com/zabkwak/mat-facebook-ads-analyzer). | ||
Transformer for output data of [mat-facebook-downloader](https://github.com/lvtffuk/mat-facebook-downloader) for Media Analytics Tool project. | ||
The data can be used in [mat-facebook-ads-analyzer](https://github.com/lvtffuk/mat-facebook-ads-analyzer). | ||
|
||
## Development | ||
### Requirements | ||
- Python 3 | ||
- `gcc` and `g++` libraries | ||
### Installation & test run | ||
```bash | ||
git clone [email protected]:zabkwak/mat-facebook-ads-transformer.git | ||
git clone [email protected]:lvtffuk/mat-facebook-ads-transformer.git | ||
cd mat-facebook-ads-transformer | ||
pip install -r requirements.txt | ||
python ./ | ||
|
@@ -37,9 +37,9 @@ File | Description | |
`total_region.csv` | Total ads per region. | ||
|
||
## Docker | ||
The [image](https://github.com/zabkwak/mat-facebook-ads-transformer/pkgs/container/mat-facebook-ads-transformer) is stored in GitHub packages registry and the app can be run in the docker environment. | ||
The [image](https://github.com/lvtffuk/mat-facebook-ads-transformer/pkgs/container/mat-facebook-ads-transformer) is stored in GitHub packages registry and the app can be run in the docker environment. | ||
```bash | ||
docker pull ghcr.io/zabkwak/mat-facebook-ads-transformer:latest | ||
docker pull ghcr.io/lvtffuk/mat-facebook-ads-transformer:latest | ||
``` | ||
|
||
```bash | ||
|
@@ -49,7 +49,7 @@ docker run \ | |
-e 'OUTPUT_DIR=./output' \ | ||
-v '/absolute/path/to/output/dir:/usr/src/app/output' \ | ||
-v '/absolute/path/to/input/dir:/usr/src/app/input' \ | ||
ghcr.io/zabkwak/mat-facebook-ads-transformer:latest | ||
ghcr.io/lvtffuk/mat-facebook-ads-transformer:latest | ||
``` | ||
The volumes must be set for accessing input and output data. | ||
|
||
|