Skip to content

Commit 13d5b97

Browse files
authored
static migration (#3)
1 parent 67d7b46 commit 13d5b97

214 files changed

Lines changed: 2072 additions & 24440 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
31
# dependencies
42
/node_modules
53
/.pnp
@@ -9,12 +7,9 @@
97
# testing
108
/coverage
119

12-
# next.js
13-
/.next/
14-
/out/
15-
16-
# production
17-
/build
10+
# build output
11+
/dist/
12+
/.astro/
1813

1914
# misc
2015
.DS_Store
@@ -28,16 +23,9 @@ yarn-error.log*
2823
# local env files
2924
.env*.local
3025

31-
# vercel
32-
.vercel
33-
3426
# typescript
3527
*.tsbuildinfo
36-
next-env.d.ts
3728

3829
package-lock.json
3930

4031
.idea/
41-
42-
# fumadocs generated
43-
.source/

.prettierrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"singleQuote": true,
33
"arrowParens": "always",
44
"trailingComma": "none",
5-
"jsxBracketSameLine": true,
5+
"bracketSameLine": true,
6+
"plugins": ["prettier-plugin-astro"],
67
"printWidth": 100,
78
"tabWidth": 2,
89
"semi": false

astro.config.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { defineConfig } from 'astro/config'
2+
import react from '@astrojs/react'
3+
import sitemap from '@astrojs/sitemap'
4+
5+
export default defineConfig({
6+
site: 'https://evolve.com',
7+
output: 'static',
8+
integrations: [react(), sitemap()]
9+
})

bun.lock

Lines changed: 1646 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

content/docs/adr/adr-001-node-interface.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

content/docs/adr/adr-002-mempool.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

content/docs/adr/adr-003-peer-discovery.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)