Skip to content

baileysmith94/Fork-It

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🚀 Capstone Boilerplate

A template for building web applications using the PERN (PostgreSQL, Express.js, React, Node.js) stack.

🏁 Getting Started

  1. Don't fork or clone this repo! Instead, create a new, empty directory on your machine and git init (or create an empty repo on GitHub and clone it to your local machine)

  2. Add this template as a remote and merge it into your own repository

git remote add boilermaker [email protected]:FullstackAcademy/capstone-app-template.git
git fetch boilermaker
git merge boilermaker/main
  1. Install packages
npm i
  1. Add a .env file with your secret value for auth
JWT_SECRET='somesecretvalue'
  1. Create the database
createdb your-database-name
  1. Update src/server/db/client.js to reflect the name of your database
const connectionString = process.env.DATABASE_URL || 'https://localhost:5432/your-database-name';
  1. Seed the database
npm run seed
  1. Start the server
npm run dev
  1. Open your browser at http://localhost:3000

  2. Build something cool! 😎

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages