Skip to content

Latest commit

 

History

History
91 lines (76 loc) · 2.47 KB

01-configure-app.md

File metadata and controls

91 lines (76 loc) · 2.47 KB

Configure

Configuration data is split into two files: data/settings.json (configuration data):

  "organizer": {..},
  "url": "..",
  "startDate": "..",
  "endDate": "..",
  "webapp": {..},
  "hashtag": "..",
  "navigation": [..],
  "location": {..}
  "social": [..],
  "gallery": {..},
  ...

and data/resources.json (texts and other configurations):

Pages configuration

Disable, reorder or modify blocks for individual pages inside their individual files that can be found in /pages folder. The top block (aka 'hero') view of the page can be adjusted via heroSettings in data/settings.json

"heroSettings": {
  "home": {
    "description": "Join the commuity, learn new things!",
    "background": {
      "color": "#673ab7",
      "image": "/images/backgrounds/home.jpg"
    },
    "fontColor": "#FFF"
  },
  "blog": {
    "title": "Blog",
    "metaDescription": "Read stories from our team",
    "background": {
      "color": "#FFF"
    },
    "fontColor": "#424242"
  },
  "speakers": {
    "title": "Speakers",
    "metaDescription": "Hear from the Googlers, Partners, and Guest Speakers who are building the future of the cloud. Check back often as we add more speakers, including our customers and partners.",
    "description": "Hear from the Googlers, Partners, and Guest Speakers who are building the future of the cloud. Check back often as we add more speakers, including our customers and partners.",
    "background": {
      "color": "#FFF"
    },
    "fontColor": "#424242"
  }
  ...
 }

If you don't need some pages, don't forget to remove them (or comment out) in src/router.ts

Toolbar Navigation

Define a page's label and url in navigation in data/settings.json

"navigation": [
  {
    "route": "home",
    "permalink": "/",
    "label": "Home"
  },
  {
    "route": "speakers",
    "permalink": "/speakers/",
    "label": "Speakers"
  },
  ...
]

"Become a partner" - how it works?

Become a partner button opens a form with company name, name and email fields. After a user (potential partner) filled a form, this data is saved into Firestore DB, potentialPartners node. It gives the possibility to contact back those people who are interested to be a partner with you and collaborate earlier.

Next steps

Now your Hoverboard is configured, learn how to integrate firebase with, style and deploy your app.