Founders and Coders Week 8 project
Stop Go Continue - now digitally available so we can do it in the park :>)
-
$ git clone https://github.com/dupreesi/sgcGO.git
-
$ npm i
-
Go into PGCLI or PSQL and enter the following:
-
CREATE DATABASE [db_name];
` -
CREATE USER [user_name] WITH SUPERUSER PASSWORD ['password'];
-
ALTER DATABASE [db_name] OWNER TO [user_name];
` -
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) -
Build the database:
$ psql -f "src/databaseb/db_build.sql" YOUR_DATABASE
-
Run that thing:
$ npm run dev
- 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