-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs
More file actions
executable file
·76 lines (76 loc) · 1.84 KB
/
docs
File metadata and controls
executable file
·76 lines (76 loc) · 1.84 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env sh
case $1 in
drf)
echo "https://www.django-rest-framework.org/"
;;
dj|django)
echo "https://docs.djangoproject.com/en/2.2/"
;;
sentry)
echo "https://docs.sentry.io/"
;;
configurations|conf)
echo "https://django-configurations.readthedocs.io/en/stable/values/#built-ins"
;;
flow)
echo "https://flow.org/en/docs/types/"
;;
react)
echo "https://reactjs.org/docs/forms.html"
;;
hooks)
echo "https://reactjs.org/docs/hooks-reference.html#basic-hooks"
;;
cra|create-react-app)
echo "https://facebook.github.io/create-react-app/docs/getting-started"
;;
j|jenkins)
echo "https://jenkins.io/doc/book/pipeline/syntax/"
;;
h|heroku)
echo "https://devcenter.heroku.com/articles/buildpack-api"
;;
cy|cyp|cypress)
echo "https://docs.cypress.io/api/api/table-of-contents.html"
;;
p|py|python)
echo "https://docs.python.org/3/library/exceptions.html#exception-hierarchy"
;;
mdn|js)
echo "https://developer.mozilla.org/en-US/"
;;
storybook)
echo "https://storybook.js.org/docs/guides/guide-react/"
;;
react-router|router|rr)
echo "https://reacttraining.com/react-router/web/api/Route"
;;
compose|docker-compose|dc)
echo "https://docs.docker.com/compose/compose-file/"
;;
d|docker)
echo "https://docs.docker.com/engine/reference/commandline/docker/"
;;
flex|flexbox)
echo "https://css-tricks.com/snippets/css/a-guide-to-flexbox/#maincontent"
;;
grid)
echo "https://css-tricks.com/snippets/css/complete-guide-grid/#grid-table-of-contents"
echo "https://gridbyexample.com/examples/"
;;
ramda)
echo "https://ramdajs.com/docs/"
;;
effect)
echo "https://effect.website/docs/"
;;
schema)
echo "https://effect.website/docs/schema/introduction/"
;;
pnpm)
echo "https://pnpm.io/settings"
;;
sqlite)
echo "https://www.sqlite.org/lang.html"
;;
esac