This is the official repo for the UML Cloud Computing Club's website.
The website is implemented using Docusaurus, Easy Ops Local Search, MUI, and some fundamental ReactJS.
To edit the resources section of the website:
All markdown files containing documentation details of the projects are in docs/projects/
with the project's name marking the folder that contain's it's documentation
All markdown files containing tutorial details are in docs/resources/
with the specific resource/class's name marking the folder that contain's it's files.
All markdown files containing activity details are in docs/activities/
with the specific activity's name marking the folder that contain's it's files.
All markdown files containing blog details are in blog/
with the specific blog's name marking the file that contain's it's content.
All markdown files should follow Docusaurus's guidelines for folder structure for autogenerating the UI and pagination. More details are available at the Docusaurus Docs and Docusaurus Blog.
[!TIP] All developement for UML Class Resources has been migrated to a different repository! Check it out repository to contribute!
Blogs feature quite a bit of functionality. You can add yourself as an author, add tags to categorize blogs, and add blogs themselves.
In order to add a new author the collection of available authors, edit blog/authors.yml
.
Add in the author by filling in the following template:
AUTHOR_NAME:
name:
title:
url:
image_url:
email:
socials:
github:
x:
linkedin:
stackoverflow:
[!NOTE]
AUTHOR_NAME
represents the name of the author used within code. thename
attribute represents the name that will be displayed for this author. For legibility and simplicity, preferably keep them the same.[!TIP] All socials attributes are optional and can be used in any combination with the exhaustive list of supported socials shown above. If you choose to opt out of providing social media information, also remove the entirety of the socials attribute in addition to each sub-attribute:
AUTHOR_NAME: name: title: url: image_url: email:
In order to add new tags edit blog/tags.yml
.
Add in a new tag by filling in the following template:
TAG_NAME:
label:
permalink:
description: 'Blog posts related to the TAG_NAME'
[!NOTE] In the interest of SEO and standardization, utilize the provided format for tag descriptions.
Similarly, for legibility and simplicity, preferably set theTAG_NAME
andlabel
attribute the same.
To create a new blog page, simply create a new markdown file. The name of the file will be the title of your blog page.
Within each blog page, it's required that at least the following front-matter be provided:
---
authors:
- AUTHOR1
- AUTHOR2
- ...
---
Adding tags is optional and can be added by the following format:
---
authors:
- ...
tags:
- TAG1
- TAG2
- ...
---
Also, at a minimum it's required that you follow at least this guideline:
---
authors:
---
Your short hooking statement goes here...
<!-- truncate -->
The rest of your blog's content...
All content after the front-matter and before the truncate
tag will be used as the cover content for your blog post when previewing all blog posts. This area is the short summary of your blog post.
In addition to the required front-matter and formatting instructions, feel free to add supported front-matter or content to your liking!
If you're interested in adding any local files to your blog pages, simply place them in folder within blog/
with the same name as your blog page file. Source your files accordingly: ./BLOG_NAME/FILENAME
.
To add a new project's documentation onto the project docs section of the website, you must meet a few pre-reqs:
docs
βββ web_docs
βββ intro.md | Introduction/
_category_.json
_category_.json
file is autogenerated at website build time. The order in which the projects are displayed on the website is determined by the order in which the projects are listed in the project_repos.json
file (top to bottom order).#
is an integer). This will affect the order in which the doc pages are displayed on the website (top to bottom order).
---
sidebar_position: #
---
feat: Add new project docs: PROJECTNAME
with PROJECTNAME
being the name of your project.project_repos.json
:
{
"<Other Project>": "<Other Project Github URL>",
"<Your Project Name>": "<Your Project Github URL>",
}
To add a new activity's instructions onto the activities section of the website, you must meet a few pre-reqs:
docs
βββ web_docs
βββ intro.md | Introduction/
_category_.json
_category_.json
file is autogenerated at website build time. The order in which the activities are displayed on the website is determined by the order in which the projects are listed in the activity_repos.json
file (top to bottom order).#
is an integer). This will affect the order in which the doc pages are displayed on the website (top to bottom order).
---
sidebar_position: #
---
feat: Add new activuty docs: ACTIVITYNAME
with ACTIVITYNAME
being the name of your project.activity_repos.json
:
{
"<Other Activity>": "<Other Activity Github URL>",
"<Your Activity Name>": "<Your Activity Github URL>",
}
Many thanks to the UMass Lowell Cloud Computing Club members, our faculty advisor Dr. Johannes Weis, and the UMass Lowell Computer Science Department for their support and guidance.
Much thanks to our contributors as well: