Skip to content

Clone-lite of popular flash-cards website Brainscape. Python, React, Redux, Flask, SQLAlachemy, Docker, Heroku. Project done as group of 4.

Notifications You must be signed in to change notification settings

JamarkG/CraniumLand

Repository files navigation

Clone-lite of the popular website BrainScape, a place to find, create, and study flashcards. This was a group project with Dylan Brooks, Kevin Karas, Caleb Beachler, and Mark Gregory.

https://craniumland.herokuapp.com/

Technologies Used

  • React.js
  • Redux
  • Python
  • Flask
  • JavaScript
  • Node.js
  • HTML5
  • CSS3
  • postgreSQL
  • Heroku

Views

Home Page Unauthenticated

The landing page reflects the original Brainscape design. Home Page Not Logged In

Create & View Flashcards in a Deck

The layout of creating and viewing cards is a simple, intuitive, actionable, dashboard updating in real-time. Create & View Cards

Study Flashcards

The design is based on Brainscape's format, and all includes all parallel functionality. Study Cards View

Getting started Locally

  1. Clone this repository (only this branch)

    git clone https://github.com/appacademy-starters/python-project-starter.git
  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! 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

Clone-lite of popular flash-cards website Brainscape. Python, React, Redux, Flask, SQLAlachemy, Docker, Heroku. Project done as group of 4.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published