This repository includes an unofficial mobile client for click-TT. It consists of
You can view the app here.
First, clone the repository:
git clone [email protected]:czosel/tt-mobile.git
cd tt-mobile
echo UPLOAD_PASSWORD=your-password > ./server/.env
echo PREACT_APP_API=http://localhost:3020 > ./client/.env
echo PREACT_APP_DOCS=http://localhost:8080 >> ./client/.env
With docker and docker-compose installed, run
docker-compose up -d
Alternatively, install and run the server and client locally:
# server
cd server
yarn && yarn start
# client
cd client
yarn && yarn start