Skip to content

collabcloud/project-collabcloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project logo

CollabCloud

License Code Size Open Issues Closed Pull Requests Status Contributors Hotel


CollabCloud is a social networking platform for Developers

📝 Table of Contents

🧐 About

CollabCloud is a social networking platform built on top of Github’s API. It allows users to post Software Development related projects seeking collaborators, join projects, and find projects that would be best suited for their skillset and needs. This project will cater towards students and have extensive social networking features.

🏁 Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

What things you need to install and run the application

  • Node.js (runtime environment, Node package manager) node.js
  • PostgreSQL (database server)
  • An Imgur API key (used for image hosting)
  • A GitHub v3 API key (used to connect with your GitHub repos)
  • OPTIONAL: The uuid command line tool (used to generate UUID namespace for .env file)

Installing

A step by step series of examples that tell you how to get a development environment running.

  1. Check out the latest code on the master branch
  2. Ensure that your PSQL database is running
  3. Create an environment file in the server directory
    • cd server && touch .env
    • See here for more details about what to put in the .env file
  4. From the project directory root, install dependencies for both the client and server
    • cd client && npm install
    • cd server && npm install
  5. Run the program!
    • cd server && npm run dev

🎈 Usage

  • Navigate to localhost:3000 on your favourite browser
  • A user must have a GitHub account in order to register with CollabCloud

🚀 Deployment

More to come soon...

⛏️ Built Using

✍️ Contributors

🌲Environment Variables

Your environment file in client/.env should be set up like the follow below:

REACT_APP_GITHUB_CLIENT_ID=

Note that you will need to restart the Create React App development server after making any modifications to this file.

Your environment file in server/config/.env should be set up like the following below:

# DO NOT COMMIT THIS FILE
# This is the environment variables file

# PSQL variables
DB_NAME=collabcloud
DB_USER=postgres
DB_PASS=''
DB_HOST=localhost
DB_PORT=
DB_LOGGING=FALSE
# TRUE

# UUID variables, to generate, use the `uuid` command line program
PROJECT_IDS_NAMESPACE=
FORUM_IDS_NAMESPACE=
PROJECT_NOTIFICATION_IDS_NAMESPACE=

# GitHub API variables
CLIENT_ID=
CLIENT_SECRET=

# Server variables
SERVER_PORT=5000

# Imgur API variables
IMG_CLIENT_ID=
IMG_CLIENT_SECRET=
IMG_ACCESS_TOKEN=
IMG_REFRESH_TOKEN=

About

A social networking platform for developers to find collaborators on side projects!

Resources

License

Stars

Watchers

Forks