https://github.com/ericmbouwe/messenger-app
https://github.com/ericmbouwe/messenger-app
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ericmbouwe/messenger-app
- Owner: EricMbouwe
- Created: 2021-06-15T16:10:15.000Z (about 5 years ago)
- Default Branch: feature/read_status
- Last Pushed: 2021-07-07T16:51:22.000Z (almost 5 years ago)
- Last Synced: 2025-04-28T00:32:33.695Z (about 1 year ago)
- Language: JavaScript
- Size: 581 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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')"
```