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

qerdcv/ttt-online

Repository files navigation

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