Skip to content

Commit

Permalink
hit about running from repo and select non local chain
Browse files Browse the repository at this point in the history
  • Loading branch information
austintgriffith committed Jun 3, 2024
1 parent 033c86e commit e831c41
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
19 changes: 13 additions & 6 deletions packages/nextjs/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,20 @@ const Home: NextPage = () => {
<code>{`curl -s https://nodes.buidlguidl.com/runBuidlGuidlClient.sh | /bin/bash`}</code>
</pre>
</h1>

{/* <h1 className="text-center">
<span className="block text-2xl mb-2">windows:</span>
<pre className="bg-black text-white p-8 rounded">
<code>{`wget -qO- https://nodes.buidlguidl.com/runBuidlGuidlClient.sh | /bin/bash`}</code>
</div>
<div className="pt-8">
<h1 className="text-center">
<span className="block text-2xl mt-4">or run the client from the repo:</span>
<span className="block text-2xl mb-2 mt-8"></span>
<pre className="bg-black text-white p-8 rounded text-left">
<code>{`
git clone https://github.com/BuidlGuidl/buidlguidl-client.git
cd buidlguidl-client
yarn install
node index.js
`}</code>
</pre>
</h1> */}
</h1>
</div>
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/scaffold.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type ScaffoldConfig = {

const scaffoldConfig = {
// The networks on which your DApp is live
targetNetworks: [chains.hardhat],
targetNetworks: [chains.optimism, chains.mainnet, chains.base],

// The interval at which your front-end polls the RPC servers for new data
// it has no effect if you only target the local network (default is 4000)
Expand Down

0 comments on commit e831c41

Please sign in to comment.