psschand16 / gigSource

Flask website for artists and venues to find one another

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GigSource

Introduction

GigSource is a musical venue and artist booking site that facilitates the discovery and bookings of shows between local performing artists and venues. This site lets you list new artists and venues, discover them, and list shows with artists as a venue owner.

Tech Stack

Our tech stack will include:

  • SQLAlchemy ORM to be our ORM library of choice
  • PostgreSQL as our database of choice
  • Python3 and Flask as our server language and server framework
  • Flask-Migrate for creating and running schema migrations
  • HTML, CSS, and Javascript with Bootstrap 3 for our website's frontend

Main Files: Project Structure

├── README.md
├── app.py *** the main driver of the app. Includes the SQLAlchemy models.
                  "python app.py" to run after installing dependences
├── config.py *** Database URLs, CSRF generation, etc
├── error.log
├── forms.py *** Your forms
├── requirements.txt *** The dependencies we need to install with "pip3 install -r requirements.txt"
├── static
│   ├── css
│   ├── font
│   ├── ico
│   ├── img
│   └── js
└── templates
    ├── errors
    ├── forms
    ├── layouts
    └── pages

Overall:

  • Models are located in the MODELS section of app.py.
  • Controllers are also located in app.py.
  • The web frontend is located in templates/, which builds static assets deployed to the web server at static/.
  • Web forms for creating data are located in form.py

Highlight folders:

  • templates/pages -- Defines the pages that are rendered to the site. These templates render views based on data passed into the template’s view, in the controllers defined in app.py.

  • templates/layouts -- Defines the layout that a page can be contained in to define footer and header code for a given page.

  • templates/forms -- Defines the forms used to create new artists, shows, and venues.

  • app.py -- Defines routes that match the user’s URL, and controllers which handle data and renders views to the user.

  • Models in app.py -- Defines the data models that set up the database tables.

  • config.py -- Stores configuration variables and instructions, separate from the main application code. This is where you will need to connect to the database.

About

Flask website for artists and venues to find one another


Languages

Language:Python 46.7%Language:HTML 41.7%Language:CSS 9.5%Language:JavaScript 1.5%Language:Mako 0.7%