Skip to content

Benberry1/03-pern-todo-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

This code is forked from here

There is an associated tutorial here if you need a quick refresher.

Use your fork of this to experiment and follow along with WDD03 videos. We will Dockerize, swaggerize, authenticate, and deploy this app, and you can use this as inspiration when you come to work on your group project.

Run PostgreSQL

Start a PostgreSQL container to get your database running:

docker run -d \
  --name pern-todo-db \
  -p 5432:5432 \
  -e POSTGRES_PASSWORD=password \
  -v pern-todo-db:/var/lib/postgresql/data \
  -d \
  postgres

About

Experiment With a Full Stack PERN App

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 67.1%
  • HTML 24.3%
  • CSS 8.6%