Chat wall is an application created to post messages from users in a big screen. The main idea is to create a channel that will be shown in one or more big screens from a computer and the other users can join the channel to post messages there that will be shown for 10 seconds. This repo is the backend of this application. If you want to check the frontent visit chat-wall-client
- [npm] (https://www.npmjs.com/)
- [postgresql] (https://www.postgresql.org/)
- [node] (https://nodejs.org/en/)
- Clone the repo
- Set up postgresql
- Create your .env file
- Run the server
- You are ready to set up the front end!
Clone the chatwall-server code
locally. In a terminal, run:
git clone https://github.com/davidecorreu/chatWall-server.git
Install postgresql, create a new database named 'chat-wall-db' and start postgresql service.
ENV="development"
PORT=3003
DB_USER=<your_db_user>
DB_PASSWORD=<your_db_password>
JWT_SECRET=<your_jwt_secret>
In the terminal, run:
npm install
npm run dev
Navigate to chat-wall-client and follow the instructions in the README.md to finish the setup and run the application.
- Postgresql
- Sequelize
- Json Web Token
- Koa