All Projects → Austin-from-TX → UBrew

Austin-from-TX / UBrew

Licence: other
A social app for homebrewers to connect and share their favorite brews

Programming Languages

python
139335 projects - #7 most used programming language
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
Dockerfile
14818 projects
Mako
254 projects
shell
77523 projects

ubrew_background

UBrew is an app that allows homebrewers to connect with each other and share brewing recipes. Users can upload photos and recipes of their favorite brews. They can search for and save new brews to their rotation and can follow other brewers on the app. UBrew makes clever use of React/Redux to provide a robust user experience without relying on 3rd party packages or API's.

Try the live site here. | View the database schema and feature list in the Wiki.

Tech Stack

UBrew uses the following tools, frameworks, and key packages:

Flask-SQLAlchemy (with PostgreSQL)

Flask

React

Redux

AWS S3

react-modal

Hosted on Heroku

Running UBrew Locally

  1. Clone this repository

    git clone https://github.com/Austin-from-TX/UBrew
  2. Install dependencies

    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! 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).


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].