Skip to content

Latest commit

 

History

History
185 lines (123 loc) · 9.57 KB

CONTRIBUTING.md

File metadata and controls

185 lines (123 loc) · 9.57 KB

Contributing 🤝

Getting started 🦕

Getting started with this project is similar to any other Node.js project. There really are only a handful of simple steps.

  1. Make sure Node.js is installed on your machine.
  2. Clone the repository.
  3. Install the dependencies and contribute.

First, make sure that Node.js is installed on your machine in order to run our code. If you do not have Node.js installed, visit their downloads page and install the latest long-term supported version.

To contribute to this project, you may simply begin by cloning this repository to your machine. Clone this repository by directly downloading it or via git: git clone https://github.com/ethanthatonekid/acmcsuf.com.git.

Open the repository in your code editor or terminal of choice and enter npm i to install the project's dependencies. After that, enter npm run dev to spin up the development server. As the development server is running, open up http://localhost:5173/. Every update made to the source code will trigger your http://localhost:5173/ page to reload automatically.

Now that you've got everything up-and-running, you are free to contribute to your heart's content.

Submitting your own contributions 🎉

Before publishing a PR, it is required that you run npm run all to make sure that you are complying with our style guidelines and passing all checks.

# Runs the autoformatter, WARNING: this might mutate your files.
npm run format

# Runs the linter, WARNING: this might mutate your files.
npm run lint

# Runs the checks for type errors, unused css, and more (See: https://github.com/sveltejs/language-tools/tree/master/packages/svelte-check)
npm run check

# Run all our unit tests (or `npm run test`)
npm t

# Builds the website
npm run build

# Runs all of the above checks necessary for a release deployment
npm run all

# Runs `npm run all` and hosts the production version locally
npm run host

# Runs all our unit tests and generates a code coverage report
npm run test:coverage

NPM bloat

In this project, we set a threshold for how large the /node_modules folder can become after an npm install. In our package.json, we set the size to 256 MB.

To test the size of the dependencies in your local workspace, run npm run test:size.

Architecture 🗿

For architecture-related information, please refer to ARCHITECTURE.md.

Svelte file structure 📄

Svelte files can be written as if it were an HTML file. Writing only <h1>Hello, world!</h1> in a Svelte file is valid, however, Svelte gives you access to some handy built-in superpowers that simplify development tremendously (See the Svelte docs for further information). Additionally, check out this YouTube video, Svelte in 100 Seconds by @fireship-io. For quick reference, check out https://svelte.dev/tutorial/basics.

In addition to HTML markup, Svelte files consist of two other sections: script and styles.

💡 Note: It is convention to order your sections like so: script-markup-styles.

<script> 👨‍💻

The script section of a Svelte file just contains Type/JavaScript code. Mainly, it allows you to import helper components, declare element properties, and pretty much anything else that your mind can imagine (within the limitations of JavaScript).

<styles> 💅

The styles section of a Svelte file contains CSS code. Use this section to style to HTML that exists in the same file.

This project takes a mobile-first approach to styling. This means that the stylesheet accommodates for mobile dimensions by default. So, to update the styling for desktop sizes, overwrite your styles inside the following media query:

@media screen and (min-width: 768px) {
  /* styles here */
}

Notice that the value 768px is constant. The next most common breakpoint for larger desktop screens would be 1440px. Really, the situation may affect your choice of breakpoint value, but the goal is to try to use only 768px or 1440px wherever possible for consistency-purposes.

Setting up your .env file

To interact with data from GitHub (or any third-party service), a file named .env must be created in the root of your local repository instance. Begin by renaming a cloned .env.example to .env.

Some environment variables are necessary to gain access to data from third-party services, for example, /blog. We use the GH_ACCESS_TOKEN environment variable to authenticate our requests to GitHub (and prevent rate limiting). Below is how GH_ACCESS_TOKEN should be defined in your .env file, where YOUR_PAT should be replaced with your own generated personal GitHub access token.

GH_ACCESS_TOKEN=YOUR_PAT

Fair Warning: Never commit your PAT (or any sensitive information) in files that are not ignored by our .gitignore file (.env being one of them).

Other environment variables are needed to provide information that allows the program to fetch data from the correct place. It is okay to copy and paste the additional variables into your .env file as defined below because they are already public.

# Your personal GitHub access token
GH_ACCESS_TOKEN=YOUR_PAT

# General discussion on GitHub: <https://github.com/EthanThatOneKid/acmcsuf.com/discussions/categories/newsletter>
GH_DISCUSSION_CATEGORY_ID=DIC_kwDOE7ysSc4CAC0o

# Switch to 1 to turn on debug mode.
DEBUG_MODE_ENABLED=0

Some environment variables are needed to run scripts that are used for purposes indirectly related to acmcsuf.com (such as the Gitcord scripts).

DISCORD_BOT_TOKEN=YOUR_BOT_TOKEN
GUILD_ID=YOUR_GUILD_ID
HUB_ID=YOUR_HUB_CHANNEL_ID
ARCHIVE_CHANNEL_ID=YOUR_ARCHIVE_CHANNEL_ID

Updating board member data

To update the way an officer appears on https://acmcsuf.com/teams, contributors may directly edit our src/lib/public/board/data/officers.json JSON file.

Alternatively board members may update their own board member data using a Discord slash command /boardd in our official club Discord server. For more information, see https://acmcsuf.com/boardify.

Updating shortlinks

To update the shortlinks, contributors may directly edit the src/lib/public/links/links.json JSON file.

Alternatively, board members may update the shortlinks using a Discord slash command /shorter in our official club Discord server. For more information, see https://acmcsuf.com/shorter-handbook.

Updating blog posts

https://acmcsuf.com/blog posts are stored via GitHub Discussions on the acmcsuf.com repository's Newsletter category. Edit existing blog posts by editing the corresponding discussion. Create new blog posts by creating a new discussion in the Newsletter category (https://acmcsuf.com/blog/new).

Custom workflows

In this repository, we use GitHub Actions to automate all the things 😎

Automated third-party message board

Our team uses Discord as our third-party messaging service of choice to discuss relevant topics that aren't suited/ready for GitHub. We have text channels set up on Discord dedicated to every open issue on GitHub. This approach allows us to communicate about multiple issues in an orderly and stress-free fashion.

Manually creating and closing text channels for every single GitHub issue is not an appropriate solution to this problem since the text channels will eventually become stale. We also want a way to archive these discussions without cluttering the Discord server with text channels. To accomplish these needs, we need a way to automate those tasks whenever an issue is created or closed on this GitHub repository.

The workflows/create_issue_channel.yaml workflow is responsible for creating a new text channel whenever an issue is opened [or reopened] on Github. This workflow relies on scripts/create-issue-channel.js to create the text channel and send the first message containing a link to the newly created issue.

The workflows/close_issue_channel.yaml workflow is responsible for closing a text channel whenever a corresponding issue is closed [or deleted] on Github. This workflow relies on scripts/close-issue-channel.js to transcribe the old issue channel's messages to a dedicated archive channel and then delete the old channel.

Webmaster's note 📝

Thank you for contributing! The time spent reading this deserves a pat on the back and even a hydration/stretch break. Up next, read ARCHITECTURE.md!