2023-05-27 06:00:49 +01:00
2021-11-16 16:48:32 +00:00
2021-11-10 19:22:04 +00:00
2023-01-05 17:37:41 +00:00
2022-12-07 20:05:12 +00:00
2023-01-05 17:37:41 +00:00
2023-05-27 06:00:49 +01:00
2021-12-18 22:34:07 +00:00
2022-12-16 01:21:50 +00:00
2023-01-05 17:37:41 +00:00
2021-12-26 17:33:54 +00:00
2023-01-03 01:07:14 +00:00
2023-05-27 05:48:36 +01:00
2021-12-22 20:59:56 +00:00

Accord - Messaging Made Simple.

Accord is an app, similar to Discord, but cooler. Built with React, TypeScript, and Node.js.

Please this repo to support development.

Screenshot-from-2021-08-31-16-09-41 Screenshot-from-2021-08-31-16-09-41 Screenshot-from-2021-08-30-11-55-01 Screenshot-from-2021-08-30-13-30-43

Want more stable commits? Use the stable branch.


Setup

  1. Clone the repo (frop GitHub).
  2. Generate SSH keys (secure user logins). From app directory (with Git bash):
    mkdir -p backend/keys
    ssh-keygen -t rsa -b 2048 -m PEM -f backend/keys/jwt
    
  3. Install npm packages. From app directory:
    cd frontend
    npm i
    cd ../backend
    npm i
    
  4. In backend directory, configure .env.example and rename the file to .env

Features

  • Server Channels
    • Create channels
    • Delete channels
  • Message Management
    • Server owners can delete any message
    • Message author can delete and edit their own messages
  • Member Management
    • Kick members as the server owner
    • Easily leave the server by right clicking the server
    • Join servers with an invite code
  • Server Management
    • Create servers as you would in Discord
    • Edit server name, and icon URL in the server settings
    • Delete your server in the server settings
  • User Management
    • Manage your account by clicking the settings icon
    • Change your username, and avatar
    • Delete your user and prevent it from being used to login
  • and more (of course)

Want a more basic version, that's more like Discord? https://github.com/codea-live/dclone


backend/.env (dev with Docker)

EMAIL_ADDRESS="...@gmail.com"
EMAIL_PASSWORD="..."
MONGO_URI="mongodb://database/accord"
NODE_ENV="dev"
PORT=3000
WEBSITE_URL="http://localhost:4200"

backend/test/.env (test without Docker)

API_URL="http://localhost:3001/api"
EMAIL_ADDRESS="...@gmail.com"
EMAIL_PASSWORD="..."
MONGO_URI="mongodb://localhost/accord-test"
NODE_ENV="dev"
PORT=3001
ROOT_ENDPOINT="http://localhost:3001"
WEBSITE_URL="http://localhost:4200"
Languages
TypeScript 89.5%
CSS 9.1%
HTML 0.7%
Pug 0.5%
JavaScript 0.1%