Skip to content

Commit

Permalink
New Docs Site (#2620)
Browse files Browse the repository at this point in the history
* Initial commit for new docs site. Still needs blogs, content transitioned over.

* add edited versions of existing blog posts and remove examples

Signed-off-by: Michael Robinson <[email protected]>

* configure blog

Signed-off-by: Michael Robinson <[email protected]>

* edit blog config

Signed-off-by: Michael Robinson <[email protected]>

* improve truncated versions of posts

Signed-off-by: Michael Robinson <[email protected]>

* add edited quickstart and remove templates

Signed-off-by: Michael Robinson <[email protected]>

* put back intro to fix broken links

Signed-off-by: Michael Robinson <[email protected]>

* add about page

Signed-off-by: Michael Robinson <[email protected]>

* Minor social updates and removal of tutorial.

* add resources page and move deployment guide to docs

Signed-off-by: Michael Robinson <[email protected]>

* add faq to docs

Signed-off-by: Michael Robinson <[email protected]>

* remove example tutorial from docs

Signed-off-by: Michael Robinson <[email protected]>

* fix link in deployment guide and center footer links

Signed-off-by: Michael Robinson <[email protected]>

* continued

Signed-off-by: Michael Robinson <[email protected]>

* Fixes broken link.

Signed-off-by: Michael Robinson <[email protected]>

* Configures docusaurus for test deployment on netlify.

Signed-off-by: Michael Robinson <[email protected]>

* Fixes preview image.

Signed-off-by: Michael Robinson <[email protected]>

* Changes site social card.

Signed-off-by: Michael Robinson <[email protected]>

* Changes site social card - continued.

Signed-off-by: Michael Robinson <[email protected]>

* Changes site social card - continued.

Signed-off-by: Michael Robinson <[email protected]>

* Changes site social card - continued.

Signed-off-by: Michael Robinson <[email protected]>

* Changes site social card - continued.

Signed-off-by: Michael Robinson <[email protected]>

* Changes title in meta tag.

Signed-off-by: Michael Robinson <[email protected]>

* Resizes site social card.

Signed-off-by: Michael Robinson <[email protected]>

* Fixes site social card.

Signed-off-by: Michael Robinson <[email protected]>

* Adds tagline to  site social card.

Signed-off-by: Michael Robinson <[email protected]>

* Adds CNAME.

Signed-off-by: Michael Robinson <[email protected]>

* Moves new site to new dir v2 in docs.

Signed-off-by: Michael Robinson <[email protected]>

---------

Signed-off-by: Michael Robinson <[email protected]>
Co-authored-by: phix <[email protected]>
Co-authored-by: Michael Robinson <[email protected]>
Co-authored-by: Michael Robinson <[email protected]>
  • Loading branch information
4 people authored Oct 3, 2023
1 parent 01ed782 commit 75da43c
Show file tree
Hide file tree
Showing 88 changed files with 15,263 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/v2/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
1 change: 1 addition & 0 deletions docs/v2/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
marquezproject.ai
50 changes: 50 additions & 0 deletions docs/v2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Website

This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.

### Installation

```
$ yarn
```

### Generating Docs

```bash
# clean
yarn docusaurus clean-api-docs all
# generate
yarn docusaurus gen-api-docs all
```

### Local Development

```
$ yarn start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

### Build

```
$ yarn build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.

### Deployment

Using SSH:

```
$ USE_SSH=true yarn deploy
```

Not using SSH:

```
$ GIT_USER=<Your GitHub username> yarn deploy
```

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
3 changes: 3 additions & 0 deletions docs/v2/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
Loading

0 comments on commit 75da43c

Please sign in to comment.