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

Add community sync page for XTable #625

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
3 changes: 3 additions & 0 deletions website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,8 @@ npm run serve
1. The homepage is a `.html` file located at `website/static/index.html`
2. If you're making changes to the page, test it locally using `python 3 -m http.server` and visiting http://localhost:8000/ before pushing the changes.

## Add community sync page
1. Add community page for XTable.

## Maintainers
[Apache XTable™ (Incubating) Community](https://incubator.apache.org/projects/xtable.html)
19 changes: 19 additions & 0 deletions website/community/community.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Community

We have setup the following regular syncs for community users and developers to meet, interact and exchange ideas. Meetings will be recorded and made available after every sync.
We have a slack channel [link] you can join for asking any clarification questions.

## Bi-weekly Community Call
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dipankarmazumdar Need your help in improving the content for this page, you can checkout the branch and add links for slack etc.

Participate in our community calls by joining us on Gmeet link https://meet.google.com/zmz-bcwa-yct (or zoom link ?)
Should we create a recurring invite in Google calendar and provide the meeting url, users can add it to their calendar ?


## Recordings of the community calls
Add Google driver link for recordings.


## Typical agenda
Agenda doc used for the first meeting. Is this doc okay or should we use a better process
https://docs.google.com/document/d/1mSthtQBVDDzi9bLn9sWDsPaJLJHCDoK_MxDsSphhlos/edit?usp=sharing


9 changes: 9 additions & 0 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ const config = {
routeBasePath: 'releases',
},
],
[
'@docusaurus/plugin-content-docs',
{
id: 'community',
path: 'community',
routeBasePath: 'community',
},
]
],

presets: [
Expand Down Expand Up @@ -78,6 +86,7 @@ const config = {
},
{to: 'blog', label: 'Blogs', position: 'left'},
{to: 'releases/downloads', label: 'Downloads', position: 'left'},
{to: 'community', label: 'Community', position: 'left'}
],
},
prism: {
Expand Down
2 changes: 2 additions & 0 deletions website/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<nav role="navigation" class="nav-menu w-nav-menu">
<a href="#" class="nav-link w-nav-link">Home</a>
<a href="https://xtable.apache.org/docs/setup/" class="nav-link w-nav-link">Docs</a>
<a href="https://xtable.apache.org/releases/downloads" class="nav-link w-nav-link">Community</a>
<a href="https://xtable.apache.org/blog" class="nav-link w-nav-link">Blogs</a><img src="images/break.svg" loading="lazy" alt="" class="image-10">
<a href="https://xtable.apache.org/releases/downloads" class="nav-link w-nav-link">Downloads</a>
<a href="https://github.com/apache/incubator-xtable" class="nav-icon-link1 w-inline-block"><img src="images/Github.svg" loading="lazy" alt=""></a>
Expand All @@ -50,6 +51,7 @@
<nav role="navigation" class="nav-menu-copy w-nav-menu">
<a href="#" class="nav-link-copy w-nav-link">Home</a>
<a href="https://xtable.apache.org/docs/setup/" class="nav-link-copy w-nav-link">Docs</a>
<a href="https://xtable.apache.org/community/" class="nav-link-copy w-nav-link">Community</a>
<a href="https://xtable.apache.org/blog" class="nav-link-copy w-nav-link">Blogs</a>
<a href="https://xtable.apache.org/releases/downloads" class="nav-link-copy w-nav-link">Downloads</a>
<a href="https://github.com/apache/incubator-xtable" class="nav-link-copy w-nav-link">GitHub</a>
Expand Down
Loading