Skip to content

mimike/hangIn

Repository files navigation

Welcome to Hangin!

Hangin is a clone of LinkedIn that focuses on connecting aerialists and cultivating a community for professional networking and collaboration opportunities.

Overall Structure

Python Flask Heroku

Technologies Used

  • React.js/Redux
  • SQLAlchemy
  • CSS3
  • Flask
  • Unsplash Image API
  • AWS S3

How to Use Hangin

  1. Go to https://hangin-hangin.herokuapp.com/
  2. Choose Demo or create an account to connect with other users.
  3. Users can network by following other users, post images or videos and comment and like other users posts.

UI Design

Splash page:

Screen-Shot-2021-07-29-at-19-59-01

Feed page:

Screen-Shot-2021-07-29-at-20-00-27

Networking page:

Screen-Shot-2021-07-29-at-20-01-05

Comments:

Screen-Shot-2021-07-29-at-20-03-50

Getting started

  1. Clone this repository (only this branch)

    git clone https://github.com/mimike/hangIn
  2. Install dependencies pip install --dev -r dev-requirements.txt && pip install -r requirements.txt

    pipenv install --dev -r dev-requirements.txt && pipenv install -r requirements.txt
  3. Create a .env file based on the example with proper settings for your development environment

  4. Setup your PostgreSQL user, password and database and make sure it matches your .env file

  5. Get into your pipenv, migrate your database, seed your database, and run your flask app

    pipenv shell
    flask db upgrade
    flask seed all
    flask run
  6. To run the React App in development, checkout the README inside the react-app directory.


IMPORTANT! If you add any python dependencies to your pipfiles, you'll need to regenerate your requirements.txt before deployment. You can do this by running:

pipenv lock -r > requirements.txt

ALSO IMPORTANT! psycopg2-binary MUST remain a dev dependency because you can't install it on apline-linux. There is a layer in the Dockerfile that will install psycopg2 (not binary) for us.


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published