Skip to content

Commit

Permalink
Merge pull request #67 from gal/gal-patch-1
Browse files Browse the repository at this point in the history
update readme w/ screenshtos
  • Loading branch information
gal authored Feb 12, 2024
2 parents 4f76f41 + 928501f commit 458cf90
Show file tree
Hide file tree
Showing 8 changed files with 5,188 additions and 17,915 deletions.
44 changes: 31 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,46 @@
# CS3500

Timber is a social networking platform to connect professionals and hobbyists together. It’s
main purpose is to join people who are looking to work on projects in their spare time. It
can be ostensible nowadays for a student or a person aspiring to join the industry; to find and
collaborate with and gain team building skills. Our purpose is to mediate these worries of finding
a team and allow the users to match with each other based on their personal similarities and
interests. Our goal is to allow people to access this in a digestible fashion. Removing high
barriers to entry such as CVs, lengthy cover letters and experience prerequisites. Users on this
platform not only can match with these projects but can also use them to gain and show their
experience on their professional portfolios.
# Team Software Project - Timber

> Timber is a social networking platform to connect professionals and hobbyists together. It’s
> main purpose is to join people who are looking to work on projects in their spare time. It
> can be ostensible nowadays for a student or a person aspiring to join the industry; to find and
> collaborate with and gain team building skills. Our purpose is to mediate these worries of finding
> a team and allow the users to match with each other based on their personal similarities and
> interests. Our goal is to allow people to access this in a digestible fashion. Removing high
> barriers to entry such as CVs, lengthy cover letters and experience prerequisites. Users on this
> platform not only can match with these projects but can also use them to gain and show their
> experience on their professional portfolios.
[Screenshots](./screenshots/)

# Team Software Project 3<sup>rd</sup> year Computer Science CK401, University College Cork

## Group members

- Reece Donovan [@ReeceDonovan](https://www.github.com/reecedonovan)
- Aidan Molloy [@AidanMolloy](https://github.com/AidanMolloy)
- Max Hodor [@minmaximilian](https://github.com/minmaximilian)
- Thomas Galligan [@gal](https://github.com/gal)

# Installation

## Dependencies
[Docker](https://docker.com)

- [Docker](https://docker.com)
- [Docker-compose](https://docs.docker.com/compose/)

---

( or alternatively )

- [Go](https://golang.org)
- [Node](https://nodejs.org)
- a webserver like [Nginx](https://nginx.com)
- [PostgreSQL](https://www.postgresql.org)
- [Redis](https://redis.com/)

## Setup
- Create an OAuth web application on [Google Cloud Platform](https://console.cloud.google.com), and get OAuth2 Client ID and Secret

- Create an OAuth web application on [Google Cloud Platform](https://console.cloud.google.com), and get OAuth2 Client ID and Secret
- Create an OAuth web application on [Github](https://github.com/settings/developers), and get OAuth2 Client ID and secret.

- Set both to use `http://localhost/oauth/callback/<PROVIDER_NAME>` as valid redirect URLs (and http://localhost as valid Javascript Origins for Google).
Expand Down
Binary file added screenshots/createproject.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/landing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/projectspage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/usercard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node as dev
FROM node:latest as dev

WORKDIR /app

COPY . .

RUN npm i

FROM node as build
FROM node:latest as build

WORKDIR /app

Expand Down
Loading

0 comments on commit 458cf90

Please sign in to comment.