Skip to content

flotiq/flotiq-gatsby-event-1

Repository files navigation

Flotiq logo

Gatsby starter for events with Flotiq source

Kick off your project with this event boilerplate. This starter ships with the main Gatsby configuration files you might need to get up and running blazing fast with the blazing fast app generator for React.

Live Demo: https://flotiq-gatsby-event-1.netlify.app

This project use:

  • Flotiq - Headless CMS for string your data (You can create account here)
  • Tailwind - utility-first CSS framework
  • Flotiq source plugin - connector for fetching data from Flotiq
  • Flotiq components for react - components library designed and written to work perfectly with Flotiq Content Objects and display your data beautifully

This project works on node >=18.0.0, as require Gatsby 5.

Quick start using Flotiq CLI

Start the project from template using Flotiq CLI

npm install -g flotiq-cli
flotiq start [projectName] https://github.com/flotiq/flotiq-gatsby-event-1.git [flotiqApiKey]
  • projectName - Project path (if you wish to start project in the current directory - use .)
  • flotiqApKey - Read and write API key to your Flotiq account

This command will:

  • create project based on template using the gatsby new command
  • install npm dependencies
  • setup variables in the .env file
  • import example data to you Flotiq account using the flotiq import command
  • start development server using the gatsby develop command

Configuration

Environment variables are stored in the .env files. The .env.development file inside the root of the directory should have the following structure:

GATSBY_FLOTIQ_API_KEY=YOUR FLOTIQ API KEY
GA_MEASUREMENT_ID=YOUR MEASUREMENT ID

Import data (optional)

This step is optional and is not necessary if you used flotiq-cli to start the project.

If you wish to import example data to your account, before running gatsby develop run:

flotiq import . [flotiqApiKey]

It will add four example objects to your Flotiq account.

Note: You need to put your Read and write API key as the flotiqApiKey for import to work, You don't need any content types in your account.

Developing

Navigate into your new site’s directory and start it up.

cd flotiq-gatsby-event-1/
gatsby develop

Your site is now running at http://localhost:8000!

Note: You'll also see a second link: http://localhost:8000/___graphql. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the Gatsby Tutorial.

Open the flotiq-gatsby-event-1 directory in your code editor of choice and edit src/templates/index.js. Save your changes and the browser will update in real time!

Manage your content using Flotiq editor

You can now easily manage your content using Flotiq editor.

As Gatsby generates static pages based on content from headless CMS, you have to rebuild site after the data changes.

Update data in development

When you update the Content Object in Flotiq you have to rerun gatsby develop. When you update the Content Type Definition in Flotiq, you have to run gatsby clean command.

Note: To simplify this process you can configure Gatsby Refreshing Content endpoint.

Update data in production

When you update the data in Flotiq you have to rebuild project using gatsby build command.

If you use hosting services listed below you can simplify the process:

For other services you can configure Webhook on data change or manually rebuild site in hosting service.

Deploy

Deploy this starter with one click on Gatsby Cloud:

Deploy to Gatsby Cloud

You can also deploy this project to Heroku in 3 minutes:

Deploy

Or to Netlify:

Deploy

Or to Cloudflare Workers:

Deploy to Cloudflare Workers

Note

Cloudflare Workers deployment uses Flotiq starter API key, if you want to deploy a worker with your own Flotiq API key, after deployment go to your forked repository on GitHub and add a GATSBY_FLOTIQ_API secret in repository's settings, then in Actions, select "Deploy Cloudflare Worker" workflow and click "Run workflow" to deploy the worker again.

More information about GitHub secrets can be found here.

What's inside?

A quick look at the top-level files and directories you'll see in a Gatsby project.

.
├── .flotiq
├── .github
├── node_modules
├─┬ src
│ ├── assets
│ ├── components
│ ├── layouts
│ ├── pages
│ ├── sections
│ ├── style
│ └── templates
├── .eslintignore
├── .eslintrc.js
├── .gitignore
├── .prettierignore
├── .prettierrc
├── app.json
├── gatsby-browser.js
├── gatsby-config.js
├── gatsby-node.js
├── LICENSE
├── netlify.toml
├── package.json
├── README.md
├── static.json
├── tailwind.config.js
├── worker-index.js
├── wrangler.toml
└── yarn.lock
  1. .flotiq: This directory contains content types necessary to starter to work.

  2. .github: This directory contains templates of GitHub issues.

  3. /node_modules: This directory contains all packages that your project depends on (npm packages) and are automatically installed.

  4. /src: This directory will contain all the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template. src is a convention for “source code”.

  5. /src/assets: This directory will contain all static assets for the project (images, favicons, custom fonts).

  6. /src/components: This directory will contain all small build blocks for your templates and layouts.

  7. /src/layouts: This directory will contain all layout templates for your pages.

  8. /src/pages: This directory will contain all static pages for the project.

  9. /src/sections: This directory will contain all big build blocks for your project.

  10. /src/style: This directory will contain global styles for the project.

  11. /src/templates: This directory will contain all templates for automatically generated pages.

  12. .eslintignore: This file tells eslint which files it should not track / not fix.

  13. .eslintrc.js: This is a configuration file for Eslint. Eslint is a tool to help keep the formatting of your code consistent automatically.

  14. .gitignore: This file tells git which files it should not track / not maintain a version history for.

  15. .prettierignore: This file tells prettier which files it should not track / not fix.

  16. .prettierrc: This is a configuration file for Prettier. Prettier is a tool to help keep the formatting of your code consistent.

  17. app.json: Configuration file for Heroku deploy. You can safely remove this file if you do not plan to deploy on Heroku.

  18. gatsby-browser.js: This file is where Gatsby expects to find any usage of the Gatsby browser APIs (if any). These allow customization/extension of default Gatsby settings affecting the browser.

  19. gatsby-config.js: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. (Check out the config docs for more detail).

  20. gatsby-node.js: This file is where Gatsby expects to find any usage of the Gatsby Node APIs (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process.

  21. LICENSE: This Gatsby starter is licensed under the MIT license.

  22. netlify.toml: Configuration file for Netlify deploy. You can safely remove this file if you do not plan to deploy on Netlify.

  23. package.json: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc.). This manifest is how npm knows which packages to install for your project.

  24. README.md: A text file containing useful reference information about your project.

  25. static.json: Configuration file for caching the project.

  26. tailwind.config.js: Configuration file for tailwind.

  27. worker-index.js: Main file for Cloudflare Workers.

  28. wrangler.toml: Configuration file for Cloudflare Workers deployment.

  29. yarn.lock: This is an automatically generated file based on the exact versions of your yarn dependencies that were installed for your project. (You won’t change this file directly).

Learning Gatsby

Looking for more guidance? Full documentation for Gatsby lives on the website. Here are some places to start:

Learning Flotiq

Full documentation for Flotiq lives on this website.

Documentation for gatsby starters is here.

Collaborating

If you wish to talk with us about this project, feel free to hop on our Discord Chat.

If you found a bug, please report it in issues.