Skip to content

Commit 31005e4

Browse files
committed
⚡ init
0 parents  commit 31005e4

File tree

8 files changed

+292
-0
lines changed

8 files changed

+292
-0
lines changed

.github/workflows/build-deploy.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Build and Deploy
5+
6+
on:
7+
push:
8+
branches: [ main ]
9+
10+
jobs:
11+
build-deploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Use Node.js
16+
uses: actions/setup-node@v2
17+
continue-on-error: true
18+
with:
19+
node-version: 14.x
20+
- run: curl -sSL git.io/zoe-site | bash
21+
- run: cp -r /tmp/zoe-site/gatsby-starter-zoe-app/public .
22+
- run: cp CNAME public/ || true
23+
- name: GH Pages deploy
24+
uses: Cecilapp/GitHub-Pages-deploy@3.2.0
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
with:
28+
email: hi@zoe.im
29+
build_dir: public

.gitignore

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/react,node,macos,nextjs
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=react,node,macos,nextjs
4+
5+
### macOS ###
6+
# General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14+
15+
# Thumbnails
16+
._*
17+
18+
# Files that might appear in the root of a volume
19+
.DocumentRevisions-V100
20+
.fseventsd
21+
.Spotlight-V100
22+
.TemporaryItems
23+
.Trashes
24+
.VolumeIcon.icns
25+
.com.apple.timemachine.donotpresent
26+
27+
# Directories potentially created on remote AFP share
28+
.AppleDB
29+
.AppleDesktop
30+
Network Trash Folder
31+
Temporary Items
32+
.apdisk
33+
34+
### NextJS ###
35+
# Next build dir
36+
.next/
37+
38+
### Node ###
39+
# Logs
40+
logs
41+
*.log
42+
npm-debug.log*
43+
yarn-debug.log*
44+
yarn-error.log*
45+
lerna-debug.log*
46+
.pnpm-debug.log*
47+
48+
# Diagnostic reports (https://nodejs.org/api/report.html)
49+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
50+
51+
# Runtime data
52+
pids
53+
*.pid
54+
*.seed
55+
*.pid.lock
56+
57+
# Directory for instrumented libs generated by jscoverage/JSCover
58+
lib-cov
59+
60+
# Coverage directory used by tools like istanbul
61+
coverage
62+
*.lcov
63+
64+
# nyc test coverage
65+
.nyc_output
66+
67+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
68+
.grunt
69+
70+
# Bower dependency directory (https://bower.io/)
71+
bower_components
72+
73+
# node-waf configuration
74+
.lock-wscript
75+
76+
# Compiled binary addons (https://nodejs.org/api/addons.html)
77+
build/Release
78+
79+
# Dependency directories
80+
node_modules/
81+
jspm_packages/
82+
83+
# Snowpack dependency directory (https://snowpack.dev/)
84+
web_modules/
85+
86+
# TypeScript cache
87+
*.tsbuildinfo
88+
89+
# Optional npm cache directory
90+
.npm
91+
92+
# Optional eslint cache
93+
.eslintcache
94+
95+
# Microbundle cache
96+
.rpt2_cache/
97+
.rts2_cache_cjs/
98+
.rts2_cache_es/
99+
.rts2_cache_umd/
100+
101+
# Optional REPL history
102+
.node_repl_history
103+
104+
# Output of 'npm pack'
105+
*.tgz
106+
107+
# Yarn Integrity file
108+
.yarn-integrity
109+
110+
# dotenv environment variables file
111+
.env
112+
.env.test
113+
.env.production
114+
115+
# parcel-bundler cache (https://parceljs.org/)
116+
.cache
117+
.parcel-cache
118+
119+
# Next.js build output
120+
.next
121+
out
122+
123+
# Nuxt.js build / generate output
124+
.nuxt
125+
dist
126+
127+
# Gatsby files
128+
.cache/
129+
# Comment in the public line in if your project uses Gatsby and not Next.js
130+
# https://nextjs.org/blog/next-9-1#public-directory-support
131+
# public
132+
133+
# vuepress build output
134+
.vuepress/dist
135+
136+
# Serverless directories
137+
.serverless/
138+
139+
# FuseBox cache
140+
.fusebox/
141+
142+
# DynamoDB Local files
143+
.dynamodb/
144+
145+
# TernJS port file
146+
.tern-port
147+
148+
# Stores VSCode versions used for testing VSCode extensions
149+
.vscode-test
150+
151+
# yarn v2
152+
.yarn/cache
153+
.yarn/unplugged
154+
.yarn/build-state.yml
155+
.yarn/install-state.gz
156+
.pnp.*
157+
158+
### Node Patch ###
159+
# Serverless Webpack directories
160+
.webpack/
161+
162+
# Optional stylelint cache
163+
.stylelintcache
164+
165+
# SvelteKit build / generate output
166+
.svelte-kit
167+
168+
### react ###
169+
.DS_*
170+
**/*.backup.*
171+
**/*.back.*
172+
173+
node_modules
174+
175+
*.sublime*
176+
177+
psd
178+
thumb
179+
sketch
180+
181+
# End of https://www.toptal.com/developers/gitignore/api/react,node,macos,nextjs

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
opencrawlers.org

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
<div align="center">
3+
4+
# Open Crawler Initiative
5+
6+
Home page for [Open Crawler Initiative](https://opencrawlers.org)
7+
8+
</div>

content/pages/about.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: About the OCI
3+
slug: "/about"
4+
layout: default
5+
container: MSection
6+
---
7+
8+
The Open Crawler Initiative
9+
is an open governance structure
10+
for the express purpose of creating
11+
open industry standards around crawlers and data scraping.

content/pages/home.mdx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
slug: "/"
3+
title: "Open Crawler Initiative"
4+
---
5+
6+
<MSection title="Open Crawler Initiative"
7+
description="The Open Crawler Initiative is an open governance structure for the express purpose of creating open industry standards around crawlers and data scraping.">
8+
9+
</MSection>

images/logo.png

8.75 KB
Loading

zoe-site.toml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
title = "OCI"
2+
description = "The Open Crawler Initiative is an open governance structure for the express purpose of creating open industry standards around crawlers and data scraping."
3+
# this filed used by manifest plugin
4+
# which only supports:
5+
# - project root based relative path
6+
# - absolute path
7+
# - remote url
8+
# so, we must use absolute path at here
9+
logo = "${__dirname}/images/wuma-dev.png"
10+
version = "alpha"
11+
primaryColor = "pink"
12+
baseContentDir = [ "${__dirname}/content" ]
13+
zoePlugins = [ "src/plugins/blog-post" ]
14+
# gtagTrackingIds = [ "" ]
15+
16+
[author]
17+
name = "Zoe"
18+
email = "hi@zoe.im"
19+
homepage = "https://zoe.im"
20+
avatar = "https://github.com/jiusanzhou.png"
21+
22+
[[navs]]
23+
title = "About"
24+
href = "/about"
25+
26+
[[navs]]
27+
title = "Github"
28+
href = "https://github.com/opencrawler"
29+
30+
[socials]
31+
email = "hi@opencrawlers.org"
32+
github = "opencrawler"
33+
34+
[copyright]
35+
from = 2_018
36+
holder = "${zoe.author.name}"
37+
location = "Earth"
38+
39+
[layouts]
40+
default = """
41+
maxWidth: ${zoe.maxWidth} # ["100%", "80%", "80%", "80%", "60rem"]
42+
header:
43+
logoProps:
44+
textColor: 'unset'
45+
footer:
46+
disableBorder: true
47+
disableGotop: true
48+
disableLogo: false
49+
disableSocials: false
50+
disableLinks: false
51+
logoProps:
52+
textColor: 'unset'
53+
"""

0 commit comments

Comments
 (0)