Skip to content

ItsOkayItsOfficial/PortHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Developer Portfolio Builder

“You're not a designer”

Table of Contents
I. Proposal
II. App
III. Team Members
IV. Tools
V. File Tree
VI. Contributions


Proposal

Issue

As budding web developers applying for jobs in the field, sometimes creating an initial portfolio site can be daunting, if not at the bottom of our list of things to do.

Fix

Project3 lets you build static portfolio sites quickly and with your information and data.



App

Wireframe

Site Flow Resume Flow

User Flow



Team

Jason Summers

  • DevOps

Alex Pugh

  • Front-end Development

Kui Eugenio

  • Back-end Development

Cody Crozier

  • Back-end Development


Tools

  • React - app build
  • Node.js
    • Body-Parser - translate various formats
    • Express.js
    • Handlebars - templating engine for user generated templates
    • Mongoose - manipulating MongoDB
  • Heroku - app deployment
  • MongoDB - to capture users, resources, interaction
  • Bootstrap 4 - HTML/CSS frameworks for app
  • Bootstrap 3.0.2 - Template formatting use
  • OAuth (GitHub) - login and administering of privileges
  • Electron - multi-platform usability (desktop or in-browser)
  • GitHub - repository for versioning and project cards
  • Google Drive - doc coordination and hosting
  • Slack Channel (private) - team communication
  • Draw io - mockups and wireframes for site, user flow, and database organization


File Tree

{{ tree }}



Contribution Policy

GitHub Flow

GitHub Flow is a simple and effective branching strategy which the folks at GitHub use. Most teams actually do not need everything GitFlow gives them and are much better off with a simpler workflow.

GitHub Flow is in a nutshell:

  1. Update master to latest upstream code
  2. Create a feature branch git checkout -b myFeatureBranch
  3. Do the feature/work
  4. Push feature branch to origin
  5. Create pull request from origin/ -> upstream/master
  6. Review, fix raised comments, merge your PR or even better, get someone else to.

The main rule of GitHub Flow is that master should always be deployable. GitHub Flow allows and encourages continuous delivery.

Resources