# oradm-to-gql
Oracle Data Modeler CSV Export to Apollo GraphQL Endpoint Generator

# Running the example:
Get dependencies:


```
cd /oradm-to-gql
yarn
cd /example
yarn

```

For postgres: 
```
docker run --name postgres -e POSTGRES_DB=lims -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD= -p 5432:5432 -d postgres

yarn start 
(or yarn debug)
```

For oracle: 
yarn oracledb (this is a peer dep so it isn't installed by default)

follow these instructions to get oracle instant client:
https://github.com/oracle/node-oracledb/blob/master/INSTALL.md#instosx


```
docker ???? Adam fill this out ?

yarn start:oracle
```
