Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.1 KB

README.md

File metadata and controls

32 lines (20 loc) · 1.1 KB

sgcGO

Founders and Coders Week 8 project

Travis badge codecov

Stop Go Continue - now digitally available so we can do it in the park :>)

Local Installation

  1. $ git clone https://github.com/dupreesi/sgcGO.git

  2. $ npm i

  3. Go into PGCLI or PSQL and enter the following:

  4. CREATE DATABASE [db_name]; `

  5. CREATE USER [user_name] WITH SUPERUSER PASSWORD ['password'];

  6. ALTER DATABASE [db_name] OWNER TO [user_name]; `

  7. Create a config.env file in your project root containing a DATABASE_URL variable with a postgres:// URL to a local database (DB_URL=postgres://user:password@localhost:port/database_name)

  8. Build the database: $ psql -f "src/databaseb/db_build.sql" YOUR_DATABASE

  9. Run that thing:$ npm run dev

USER STORIES

  • I can create a new board and invite others by sharing a link
  • I can see existing boards by searching for specific names or ids
  • I can post topics to the currently active board