0041b787ec
* removed aws auth * updated fetching and package scripts * updated url usage
15 lines
585 B
JavaScript
15 lines
585 B
JavaScript
/* eslint-disable */
|
|
require('dotenv').config({ path: '.env.production' })
|
|
const { exec } = require('child_process')
|
|
const dataConfig = require('./relay.config')
|
|
const thegraphConfig = require('./relay_thegraph.config')
|
|
/* eslint-enable */
|
|
|
|
const THEGRAPH_API_URL = 'https://api.thegraph.com/subgraphs/name/uniswap/uniswap-v3'
|
|
exec(`get-graphql-schema ${THEGRAPH_API_URL} > ${thegraphConfig.schema}`)
|
|
|
|
console.log(process.env.REACT_APP_AWS_API_ENDPOINT)
|
|
exec(
|
|
`get-graphql-schema --h Origin=https://app.uniswap.org ${process.env.REACT_APP_AWS_API_ENDPOINT} > ${dataConfig.schema}`
|
|
)
|