the-collab-lab / website-og

the-collab-lab.codes
2 stars 3 forks source link
hacktoberfest

Netlify Status

🖥 The Collab Lab Website

The source repository for The Collab Lab website.

Table of Contents
  1. 🛠 Built With
  2. 📝 Getting Started
  3. 🔬 Usage
  4. ✨Contributing

🛠 Built With

📝 Getting Started

Prerequisites

This website requires Node and NPM to be installed in order to run locally. You can view the NPM documentation to learn more about installation.

You may also need the Netlify CLI to test certain features such as the Stripe donation buttons. If you need access to Netlify, you can request access in #committee-website and someone will invite you to the Netlify project.

Installation

Clone the website using Github CLI.

gh repo clone the-collab-lab/website

Run npm i in the repository directory to install all the necessary packages and to set up Husky for pre-commit linting.

GraphQL Introspection

Use this link to access the playground and schema for our GraphQL endpoint.

Depending on your IDE, you may have the ability to introspect the schema and unlock type checking in your editor:

VS Code

  1. Install both the GraphQL for VSCode and GraphQL: Language Feature Support plugins.
  2. Create a graphql.config.json and copy/paste the json found below.
  3. VSCode will automatically introspect the schema without having to create a schema file.

IntelliJ

  1. Install the GraphQL Plugin.
  2. Create a .graphqlconfig file and copy/paste the json found below.
  3. Use the GraphQL plugin to generate a schema.graphql file from the config.

The JSON config for either VS Code's or IntelliJ's config file is:

{
  "name": "Collab Lab GraphQL Schema",
  "schemaPath": "schema.graphql",
  "extensions": {
    "endpoints": {
      "Default GraphQL Endpoint": {
        "url": "https://api-us-east-1.graphcms.com/v2/ckfwosu634r7l01xpco7z3hvq/master",
        "headers": {
          "user-agent": "JS GraphQL"
        },
        "introspect": true
      }
    }
  }
}

For other platforms, consult the documentation for your IDE.

🔬 Usage

To run the site:

npm run dev # starts the dev server on port 8080

To build the site:

npm run build # builds the site and outputs it in the /build/ folder

To build and run the build version of the site:

npm run build:serve # builds and serves the site in localhost:5000

✨ Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request, or create a new issue!

How to Fork the Project

  1. Use this link to fork the repository or use the “Fork” button at the top of the repository page
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a pull request, using your repository and branch as the source, and the main branch of this repo as the base.