Skip to content

RustFestEU/2020.rustfest.eu

Repository files navigation

Contributing

If you want to add to this website use git to clone it.

git clone --branch main git@github.com:RustFestEU/2020.rustfest.eu.git 2020.rustfest.eu

Or to update your local copy

git checkout main
git pull

Yarn is used for dependency management. To install the dependencies required run

yarn install

You can start a local development server to explore the data in the GraphQL explorer or to preview the changes you've made with.

yarn start

Once you've completed your content changes (see Content) run the deploy command. This will create an optimised build and push it to the gh-pages branch from which it will be served.

yarn deploy

Optionally you can use the -m option to add a description of what you changed.

yarn deploy -m "Added John Doe as speaker"

Don't forget to commit and push your changes to the content on the main branch so other people can iterate on top of them.

git commit
git push

Content

All content filenames should be lowercase with words separated by hyphens (-).

Whenever content is added a rebuild is needed.

Adding speakers

Copy the template below and change values as needed.

---
name: Example Namse
image: /images/example.jpg
links:
  - icon: github
    url: https://github.com/example
  - icon: twitter
    url: https://twitter.com/example
---

Examples are great, that's why it should definitely be a speaker.

image should be a path to a file in the /content/images folder that starts with /images.

Adding sponsors

Copy the template below and change values as needed.

---
name: 'Example LLC'
link: 'https://example.com'
group: sponsor
level: travel
image: /images/sponsors/example.jpg
---

Description for platinum sponsors can go here.

group should be one of:

  • sponsor
  • partner
  • venue
  • media

level should be one of:

  • platinum
  • gold
  • silver
  • bronze
  • travel

Adding sessions

Copy the template below and change values as needed.

---
title: Title of the session
date: 2018-04-05T10:00:00.000Z

speakers:
  - Example Name
---

This is an example session that'll be awesome.

speakers can be multiple values in Markdown list format or a single value. Each value should correspond to the value of the name field of one of the files in the /content/speakers folder.

Adding teammembers

Copy the template below and change values as needed.

---
name: Jane Doe
image: /images/team/jane-doe.jpg

website: https://example.com
twitter: https://twitter.com/janedoe
linkedin: https://linked.in/u/janedoe
github: https://github.com/janedoe
gitlab: https://gitlab.com/janedoe
behance: https://www.behance.net/janedoe
medium: https://www.medium.com/@janedoe
discord: discord://janedoe#1234
---

Jane Doe has a lot of experience with organising conferences and will be
attending RustFest for the third time. This is her first time organising RustFest.

Name, role and image are mandatory (use an anonymous image if the teammember does not want to display one). The other fields will only be output when filled.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published