Skip to content
This repository has been archived by the owner on Feb 5, 2023. It is now read-only.

Latest commit

 

History

History
41 lines (27 loc) · 1.25 KB

README.md

File metadata and controls

41 lines (27 loc) · 1.25 KB

Server Actions Status

Lint Tests ESLint Deploy Backend Deploy Frontend

ttt-online

TicTacToe Online

Check on https://ttto.qerdcv.com

Server part of TTT-online

Generate salt for hashing password

import random
from string import printable

salt = list(printable.strip())
random.shuffle(salt)
result = ''.join(salt)

TESTS


Integration

  • Requirements

    • Docker
    • docker-compose
    • Make
  • Usage

    • make test-integration