Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup #23

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading