Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
metachris committed Oct 30, 2023
1 parent 847af43 commit 2a48298
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 26 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.PHONY: docker docker-start

docker:
docker run -p 3000:3000 --name suave-docs --rm -it -w /mnt -v $(pwd):/mnt node:20 /bin/bash

docker-start:
docker run -p 3000:3000 --name suave-docs --rm -it -w /mnt -v $(pwd):/mnt node:20 /usr/local/bin/yarn start
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Use Node.js v18+
Note: if you want to install the node packages from within a Docker container (recommended for security), then you can start it like this:

```sh
docker run -p 3000:3000 --rm -it -w /mnt -v $(pwd):/mnt node:18 /bin/bash
docker run -p 3000:3000 --name suave-docs --rm -it -w /mnt -v $(pwd):/mnt node:20 /bin/bash
```

First create a copy of the environment file `.env.template` in the root of the codebase and rename it to `.env`
Expand Down
48 changes: 24 additions & 24 deletions docs/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,30 +35,30 @@ module.exports = {
'technical/specs/rigil/README', 'technical/specs/rigil/suave-chain', 'technical/specs/rigil/mevm', 'technical/specs/rigil/confidential-data-store', 'technical/specs/rigil/kettle', 'technical/specs/rigil/bridge',
],
},
{
type: 'category',
label: '⚡ Understanding MEV',
collapsed: false,
link: { type: 'doc', id: 'understand/index' },
items: [
'understand/meaning',
'understand/welfare',
'understand/power'
],
},
{
type: 'category',
label: '🏴‍☠️ Join Us',
link: { type: 'doc', id: 'join/joining-suave' },
items: [
'join/code-of-conduct',
],
},
{
"Policies": [
'policies/privacy', 'policies/terms-of-service', 'policies/prohibited-use-policy'
]
},
// {
// type: 'category',
// label: '⚡ Understanding MEV',
// collapsed: false,
// link: { type: 'doc', id: 'understand/index' },
// items: [
// 'understand/meaning',
// 'understand/welfare',
// 'understand/power'
// ],
// },
// {
// type: 'category',
// label: '🏴‍☠️ Join Us',
// link: { type: 'doc', id: 'join/joining-suave' },
// items: [
// 'join/code-of-conduct',
// ],
// },
// {
// "Policies": [
// 'policies/privacy', 'policies/terms-of-service', 'policies/prohibited-use-policy'
// ]
// },
{
type: 'link',
label: 'Forum',
Expand Down
2 changes: 1 addition & 1 deletion docs/technical
Submodule technical updated 1 files
+1 −1 specs/rigil/mevm.md

0 comments on commit 2a48298

Please sign in to comment.