https://github.com/floriank/postgres_sync_copy
A demononstration of using PostgreSQL copy to replace file_fdw
https://github.com/floriank/postgres_sync_copy
Last synced: 10 months ago
JSON representation
A demononstration of using PostgreSQL copy to replace file_fdw
- Host: GitHub
- URL: https://github.com/floriank/postgres_sync_copy
- Owner: floriank
- License: mit
- Created: 2019-04-03T13:04:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-03T14:05:20.000Z (over 6 years ago)
- Last Synced: 2025-02-27T18:44:27.649Z (10 months ago)
- Language: Elixir
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# postgres_sync_copy
A demonstration of using PostgreSQL copy to replace file_fdw
## Setup
You can either use `docker-compose` or a native setup, however, with the native setup, you need to setup your own PostgreSQL (which you can also do via `docker` ;-))
However, for `docker-compose`:
```
$ docker-compose up -d
```
Then:
```
$ docker-compose run app mix ecto.migrate
```
and
```
$ docker-compose run app iex -S mix
```
to get a console. Further instructions within.
The included PostgreSQL __binds locally at port 5432__ - if you have trouble there, something else might be running already.