All Projects → Virtual-Coffee → virtualcoffee.io

Virtual-Coffee / virtualcoffee.io

Licence: other
Public site for Virtual Coffee

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to virtualcoffee.io

Thegeekpath
The Geek Path = a community manifesto
Stars: ✭ 18 (-83.93%)
Mutual labels:  community, tech
Goupaz.com
Community driven open source accelerator
Stars: ✭ 163 (+45.54%)
Mutual labels:  community, tech
community
This is the main CHAOSS community repository. Feel free to open an issue to discuss a topic of community interest! This repository also holds governance, mentorship, and other community-related documentation
Stars: ✭ 57 (-49.11%)
Mutual labels:  community, mentorship
Women In Technology
A collection of resources for women in tech, consisting of - courses, learning guides, amazing sites and repos, blogs, programs and events. scholarships, etc.
Stars: ✭ 170 (+51.79%)
Mutual labels:  community, tech
Community Search
A community-curated repository of 🔥 learning resources
Stars: ✭ 72 (-35.71%)
Mutual labels:  community, learn
training-center.github.io
Site do Centro de Treinamento
Stars: ✭ 104 (-7.14%)
Mutual labels:  community, mentorship
WebEngDUS
Everything you need to know about how we run the Web Engineering DUS Meetup.
Stars: ✭ 13 (-88.39%)
Mutual labels:  tech
Code-of-conduct
Code de conduite de la communauté francophone de JavaScript (ECMAScript) et Node.js
Stars: ✭ 65 (-41.96%)
Mutual labels:  community
azureselected
Azure Selected content localization.
Stars: ✭ 17 (-84.82%)
Mutual labels:  learn
buoy
🆘 A community-based crisis response system. Because friends don't let friends call the cops. 🔥🚓🔥
Stars: ✭ 68 (-39.29%)
Mutual labels:  community
Open-Translating
区块链技术指北(ChainONE)社区开源内容翻译计划。
Stars: ✭ 18 (-83.93%)
Mutual labels:  community
TopicFriends
TopicFriends. Connects people based on shared actionable interests and locations.
Stars: ✭ 30 (-73.21%)
Mutual labels:  community
smix-eleventy-starter
A standards-respecting starter kit for Eleventy. Go Indie.
Stars: ✭ 108 (-3.57%)
Mutual labels:  11ty
medellinjs
MedellinJS
Stars: ✭ 61 (-45.54%)
Mutual labels:  community
gothanks
GoThanks automatically stars Go's official repository and your go.mod github dependencies, providing a simple way to say thanks to the maintainers of the modules you use and the contributors of Go itself.
Stars: ✭ 111 (-0.89%)
Mutual labels:  community
pythonwhat
Verify Python code submissions and auto-generate meaningful feedback messages.
Stars: ✭ 55 (-50.89%)
Mutual labels:  learn
it52-rails
Сайт нижегородского IT-сообщества
Stars: ✭ 17 (-84.82%)
Mutual labels:  community
zfnd
The Zcash Foundation Website
Stars: ✭ 13 (-88.39%)
Mutual labels:  community
hackbunch
Hacktoberfest tracker for your community.
Stars: ✭ 11 (-90.18%)
Mutual labels:  community
isamuni
An information aggregator for Facebook groups
Stars: ✭ 14 (-87.5%)
Mutual labels:  community

Netlify Status

Virtual Coffee

Virtual Coffee is a laid-back conversation with developers twice a week. It's the conversation that keeps going in slack. It's the online events that support developers at all stages of the journey. It's the place where you go to make friends who all just happen to be in tech.

Anyone can join! Whether you're just thinking about getting into tech or have been in it for decades.

We know that growth comes at all levels and that no matter what stage of the journey you're on, you can teach and learn.

So come with a question or a topic to discuss, ask for feedback on your portfolio, answer another developer's question, or just sit back and listen to others talk about tech.

Our mission is to form community, allow room for growth and mentorship at all levels, and to provide a safe space for everyone interested in tech.

Please take a moment to read our Code of Conduct

See you there!

Working on the site:

This site is built using Remix.

Table of Contents:

Local Development Setup

Steps to run the site locally for development or curiosity

1. Fork and clone the repository

Follow these steps to create a fork of this repository and clone it to your local machine.

2. Navigate to the repo directory

If you have just run git clone ... , the next step would be to move into the cloned repo:

cd virtualcoffee.io

3. Install dependencies

This repo requires node, yarn, and the Netlify CLI to get started.

Installing node:

The best way to install node is to download the installer from their site. This repo requires node version 16, which is the latest version.

If you already have a different version of node installed, but don't want to update globally, you can install a package called nvm, which will allow you to easily switch node versions. Once you have nvm installed (or if you already have it installed), you can run nvm use in the main directory and it will install the proper version of node.

Installing yarn:

yarn is a package manager that is used to install the rest of our dependencies. You can install yarn by running the following command:

npm install -g yarn

Read more about yarn on their docs site.

Installing the Netlify CLI

The Netlify CLI allows users to run a local version of the Netlify environment for local development. You can even share your locally-running app with other people on the internet!!

To install:

npm i -g netlify-cli

If you have previously installed the Netlify CLI, you should update it to the latest version:

npm i -g netlify-cli@latest

Setting up your .env

Use the following command to create a local .env file. Then open the new file (.env) and adjust any settings that are needed.

cp .env.example .env

Installing package dependencies

Once you have node, yarn, and the Netlify CLI installed, you're ready to install the local dependencies! Run the following command:

yarn

At this point you're ready to roll! Run the following command to get rolling!

yarn dev

Read more about what yarn dev does in the following section.

Commands

The following commands are available for your use. Most of the time you'll only ever need yarn dev.

yarn dev

yarn dev

This is the only command you need to do normal local development.

Starts a local server and watches your source files for changes. Use this to preview local development.

Once you run this command, a local server is running at http://localhost:9000! Any changes you make to the src folder should also re-build the site and re-load your browser.

You should see something like 'Server now ready on http://localhost:9000' below, which means the watcher is waiting to build your awesome changes!

Use ctrl-c to quit the server when you're done.

yarn dev actually runs three sub commands, which can be run independently if you wish:

  • yarn dev:sass - compiles sass styles found in ./styles. When in dev mode will re-run when a file is changed. The files are compiled to the ./tmp directory to be processed by the next step.
  • yarn dev:css - processes css files using PostCSS. The resulting files are saved in ./app/styles
  • yarn dev:remix - starts up the local Netlify dev environment and starts the Remix server.

yarn build

yarn build

Builds a production-ready version of the site. This is what Netlify uses to build our site.

yarn build actually runs three sub commands, which can be run independently if you wish:

  • yarn build:sass - compiles sass styles found in ./styles. The files are compiled to the ./tmp directory to be processed by the next step.
  • yarn build:css - processes css files using PostCSS. The resulting files are saved in ./app/styles
  • yarn build:remix - compiles everything needed to run the site for production.

yarn format

yarn format

Runs Prettier on all of our files. This happens automatically via husky and lint-staged, so there's usually no need to run this manually.

yarn lint

yarn lint

Runs ESLint on all of our files, so you can check for errors or warnings. This happens automatically at build time.

Loading data

A lot of the data loaded on the site is from APIs that require private keys or tokens. Unfortunately we can't publish these or distribute them too widely.

All of the data points have mock data that is used if the required API key isn't present, so contributors should be able to make UX-related changes without needing them.

If you'd like to work on a feature that requires an API key, please reach out to a maintainer and we can probably get that going.

Adding content

Resources

Our VC Resources are creating using MDX. MDX is basically a combination of Markdown and React.

Any files added to app/routes/resources will be automatically loaded and added to the appropriate index page.

A good way to start adding a new page would be to copy one of the existing pages, then edit the details and content.

Newsletters

The newsletters (for now) are simply jsx files, and can be found in app/routes/newsletter/issues.

When you add a new issue, make sure to add it to the index. Here's how:

  • Open app/data/newsletters.js
  • import the new issue
  • Add the new issue to the newsletters array.

So, if you have created app/routes/newsletter/issues/2022-03.jsx:

+ import { handle as issue202203 } from '~/routes/newsletter/issues/2022-03';
import { handle as issue202202 } from '~/routes/newsletter/issues/2022-02';
import { handle as issue202201 } from '~/routes/newsletter/issues/2022-01';

const newsletters = [
+ 	{ handleData: issue202203, slug: '2022-03' },
	{ handleData: issue202202, slug: '2022-02' },
	{ handleData: issue202201, slug: '2022-01' },
];

Monthly Challenges

The monthly challenges (for now) are simply jsx files, and can be found in app/routes/monthlychallenges.

When you add a new challenge, make sure to add it to the index. Here's how:

  • Open app/data/monthlyChallenges/getChallenges.js
  • import the new challenge
  • Add the new challenge to the challenges array.

So, if you have created app/routes/monthlychallenges/apr-2022.jsx:

+ import { handle as apr2022 } from '~/routes/monthlychallenges/apr-2022';
import { handle as mar2022 } from '~/routes/monthlychallenges/mar-2022';
import { handle as feb2022 } from '~/routes/monthlychallenges/feb-2022';

const challenges = [
+ 	{ handleData: apr2022, slug: 'apr-2022' },
	{ handleData: mar2022, slug: 'mar-2022' },
	{ handleData: feb2022, slug: 'feb-2022' },
];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].