All Projects → api-platform → Website

api-platform / Website

Licence: mit
The API Platform website

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Website

Paravotar
Una herramienta para practicar tu voto con la papeleta de Puerto Rico.
Stars: ✭ 19 (-50%)
Mutual labels:  gatsby
Gatsby Starter Netlify Cms
Example gatsby + netlify cms project + netlify-cms-backend-fs
Stars: ✭ 14 (-63.16%)
Mutual labels:  gatsby
Gatsby Remark Embed Gist
Gatsby remark gists preprocessor
Stars: ✭ 30 (-21.05%)
Mutual labels:  gatsby
Piyushmehta.com
Piyush's HomePage https://piyushmehta.tech and
Stars: ✭ 19 (-50%)
Mutual labels:  gatsby
Es6 Cheatsheet
Modern JavaScript cheatsheet
Stars: ✭ 10 (-73.68%)
Mutual labels:  gatsby
Gatsby Starter Blog Grommet
A Gatsby v2 starter based on Grommet v2 UI. Demo:
Stars: ✭ 21 (-44.74%)
Mutual labels:  gatsby
Gatsby Ghost Balsa Starter
A Gatsby starter for creating blogs from headless Ghost CMS.
Stars: ✭ 17 (-55.26%)
Mutual labels:  gatsby
Gatsby Starter Kontent Lumen
Lumen is a minimal, lightweight and mobile-first starter for creating blogs using Gatsby and Kentico Kontent.
Stars: ✭ 34 (-10.53%)
Mutual labels:  gatsby
Mvfsillva
My personal website
Stars: ✭ 13 (-65.79%)
Mutual labels:  gatsby
Blog
My blog created with React, Gatsby & Markdown
Stars: ✭ 29 (-23.68%)
Mutual labels:  gatsby
Bonneville
A simple, clean GatsbyJS starter for those looking to get up and running with Gatsby
Stars: ✭ 23 (-39.47%)
Mutual labels:  gatsby
Awesome Gatsby
⚛️ 📄 🚀 Awesome list for the mighty Gatsby.js, a blazing fast React static site generator.
Stars: ✭ 928 (+2342.11%)
Mutual labels:  gatsby
Gatsby Plugin Meta Redirect
Write Gatsby redirects to html files with a meta refresh
Stars: ✭ 18 (-52.63%)
Mutual labels:  gatsby
Netlify Rebuild
WordPress Plugin to trigger Netlify rebuild
Stars: ✭ 19 (-50%)
Mutual labels:  gatsby
Gatsby Starter 2column Portfolio
A minimalistic portfolio with a 2 column layout made for GatsbyJS.
Stars: ✭ 33 (-13.16%)
Mutual labels:  gatsby
Gatsby Simplefolio
⚡️ A minimal Gatsby portfolio template for Developers
Stars: ✭ 895 (+2255.26%)
Mutual labels:  gatsby
Gatsby Source Github
A source plugin for Gatsby to source Github data from its GraphQL API for static builds
Stars: ✭ 15 (-60.53%)
Mutual labels:  gatsby
Gatsby Starter Spectral
Gatsby.js V2 starter template based on Spectral by HTML5 UP
Stars: ✭ 34 (-10.53%)
Mutual labels:  gatsby
Gatsby Pagination
Gatsby utility that generates pages with pagination
Stars: ✭ 33 (-13.16%)
Mutual labels:  gatsby
Leo Blog
My 🏡 on the ☁️
Stars: ✭ 27 (-28.95%)
Mutual labels:  gatsby

api-platform.com

This repository contains the source code and documentation powering api-platform.com.

Single Page Application built with React and powered by Gatsby.

Build Status

Project structure

For an overview of the project structure, please refer to the Gatsby documentation.

Installation and usage

To run the installation script, you will need jq. Be sure to install them first and to have the binaries in your path.

# Checkout project

git clone https://github.com/api-platform/website.git

# Change directory

cd website

# Install dependencies

yarn install

# Retrieve documentation

bin/retrieve-documentation

# Run project locally (for development)

yarn gatsby develop
> Go to http://localhost:8000/

# Build the project (for production)

yarn gatsby build

# Test the built project locally

yarn gatsby serve
> Go to http://localhost:9000

Publishing Docs For New Versions

  1. Create a branch for the new version in the api-platform/docs repository.
  2. Update Algolia DocSearch configuration
{
  "index_name": "api-platform",
  "start_urls": [
    {
      "url": "https://api-platform.com/docs/(?P<version>.*?)/",
      "variables": {
        "version": [
          "main",
          "2.6",
          "2.5",
          "2.4",
          "2.3",
          "2.2",
          "2.1"
        ]
      }
    },
    // ...
  },
  // ...
}
  1. Add the new version in constants.js
module.exports = Object.freeze({
  // ...
  versions: ['main', '2.5', '2.4', '2.3', '2.2', '2.1'],
  currentVersion: '2.6',
  mainVersion: '2.7',
  // ...
});

🤝 Contributors features

You need to use a valid github token to retrieve the list of contributors.

  1. Go to your github developer settings

  2. Select scopes public_repo, read:org and read:user, generate the token and copy it.

  3. Create a new .env.local file on the root of your local website project, and set your token as an environment variable named GITHUB_KEY.

❗Core team badges restriction: You need to be a member of API Platform organization to retrieve API Platform teams. You can still locally launch the project, but the badges of the core team members will not appear.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].