forked from IsmaeelAkram/icloud-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (32 loc) · 768 Bytes
/
Copy pathMakefile
File metadata and controls
45 lines (32 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
.PHONY: help quickstart init configure auth start stop restart refresh status logs doctor uninstall
help:
@echo "Targets:"
@echo " make quickstart # guided setup"
@echo " make init # init venv/config/service"
@echo " make configure # write credentials config"
@echo " make auth # run interactive 2FA bootstrap"
@echo " make start|stop|restart|refresh|status|logs|doctor|uninstall"
quickstart:
./icloudctl quickstart
init:
./icloudctl init
configure:
./icloudctl configure
auth:
./icloudctl auth
start:
./icloudctl start
stop:
./icloudctl stop
restart:
./icloudctl restart
refresh:
./icloudctl refresh
status:
./icloudctl status
logs:
./icloudctl logs
doctor:
./icloudctl doctor
uninstall:
./icloudctl uninstall