Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

rtolstosheyev/chat-backend

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

:Chat!


сhat-logo

Backend for :Chat! messaging service
https://ex-chat.tech/


Downloads Contributors Forks Stargazers Issues License

Setup

MySQL database

Run Docker with MySQL: docker run -d --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=some_password -e MYSQL_DATABASE=chat-db mysql

Environmental variables

Please, set environmental variables:

For mailbox that is used for sending OTP, activation page, so on.

  • SPRING_MAIL_LOGIN

  • SPRING_MAIL_PASSWORD

    Location of your activation page

  • SPRING_MAIL_ACTIVATION_PAGE

For database.

  • SPRING_DATASOURCE_URL

  • SPRING_DATASOURCE_USERNAME

  • SPRING_DATASOURCE_PASSWORD

For local machines with Dockerized MySQL like in example username will be root, password will be 123456789 and database URL will be jdbc:mysql://localhost:3306/chat-db.

Secrets that used for JWT generation. Key validity defined in milliseconds.

  • JWT_SECRET_KEY
  • JWT_KEY_VALIDITY

You can do it in one command before running this application using -D key like: gradle -DSPRING_DATASOURCE_USERNAME=root and_so_on bootRun.

Usage

All requests:

http://some_ip_address:8081/chat/

Swagger UI:

http://some_ip_address:8081/chat/swagger-ui/index.html

API docs:

http://some_ip_address:8081/chat/v3/api-docs

If you are running this application on local machine, some_ip_address can be replaced with localhost or 127.0.0.1:

http://localhost:8081/chat/swagger-ui/index.html

Morty Proxy This is a proxified and sanitized view of the page, visit original site.