Skip to content

In this lab, we'll build an app called Nostaldja, an app for tracking fads across decades.

Notifications You must be signed in to change notification settings

pfknight8/u4_lab_nostaldja

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Nostaldja Lab

Nostalgia

Overview

In this lab, we'll build an app called Nostaldja, an app for tracking fads across decades.

Instructions

  1. Follow the installation instructions
  2. Set up your virtual environment and activate it.
  3. Install dependencies.
  4. Fulfill the listed requirements.

Setup

Read through the setup instructions from our previous labs

The goal of this app is to have a full-CRUD application with a functioning Admin panel

In your SQL file, create a Database called "Nostaldja", with a user of "NostaldjaUser", and make sure to grant them all permissions

Requirements

You'll need to create a new psql database for your app.

Models

Create two models: Decade and Fad.

A Decade will have Fads, or in other words a fad will have a foreign key for a decade.

Each Decade should have many Fads (One to Many relationship)

  • Decades
    • name ('eighties', 'nineties'...)
    • start_year
    • end_year
  • Fads
    • name
    • image_url
    • description
    • decade

Submission

About

In this lab, we'll build an app called Nostaldja, an app for tracking fads across decades.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%