Copy Once, Paste Anywhere
https://github.com/taojy123/copa/releases
git clone https://github.com/taojy123/copa
cd copa/client
pip install -r requirements.txt
python copa.py
copaconf.json will auto automatic generated while running
You can change it by text editor
{
"host": "http://copa.k8s.tslow.cn", // Server address, default is the public server
"token": "test1", // Clipboard will synchronize in the same token, please set your unique token
"interval": 5, // Synchronization interval
"language": "zh", // Currently only support "en" and "zh", default is English
"http_proxy": "", // Your can set a http proxy if necessary
"https_proxy": "" // if https_proxy is blank, it will be the same with http_proxy
}
Just set host http://copa.k8s.tslow.cn in copaconf.json
git clone https://github.com/taojy123/copa
cd copa/server
docker build -t copa-server .
docker run -p 80:8000 -d copa-server
git clone https://github.com/taojy123/copa
cd copa/server
pip install -r requirements.txt
python manage.py migrate
python manage.py collectstatic --noinput
gunicorn -w 5 -b 0.0.0.0:80 copa.wsgi
Content type
Image
Digest
Size
359.2 MB
Last updated
about 6 years ago
docker pull taojy123/copa-server