An open API service indexing awesome lists of open source software.

https://github.com/ericmbouwe/messenger-app


https://github.com/ericmbouwe/messenger-app

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# Messenger

A one-to-one realtime chat app.

## Running Application Locally

```
psql
CREATE DATABASE messenger;
\q

cd server
npm install

// seed the database
npm run seed

npm run dev
```

Create a .env file in the server directory and add your session secret

```
SESSION_SECRET = "require('crypto').randomBytes(64).toString('hex')"
```