Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example Chat Project

How to Test

Create new account

curl -v -X POST localhost:8080/signup -d '{"login": "<your login here>", "password": "<password>"}'

Login and retrieve token

curl -v -X POST localhost:8080/signin -d '{"login": "<your login here>", "password": "<password>"}'

Get account id from new account response headers or JWT

Access some of protected resources

TOKEN="<your token>"
curl -v localhost:8080/accounts/0 -H "Authorization: Bearer $TOKEN"

Building app image

docker build -f Dockerfile -t chat-server .

Running database container

docker run -d --rm --name chat-postgres -e POSTGRES_PASSWORD=12345678 -v `pwd`/init.sql:/docker-entrypoint-initdb.d/initdb.sql -p 5432:5432 postgres

Don't forget about rsa keys!

Releases

Packages

Contributors

Languages