forked from omnivore-app/omnivore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
41 lines (30 loc) · 1.05 KB
/
Makefile
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
open_ios:
$(MAKE) -C apple open
apple_graphql_gen:
$(MAKE) -C apple graphql_gen
apple_extension_gen:
$(MAKE) -C apple extension_gen
android_graphql_gen:
cp packages/api/src/generated/schema.graphql android/Omnivore/app/src/main/graphql/schema.graphqls
droid:
@if ! [ -e android/Omnivore/app/src/main/res/values/secrets.xml ]; then \
cp android/Omnivore/secrets.xml android/Omnivore/app/src/main/res/values/secrets.xml; \
fi
studio android/Omnivore
webview_gen:
yarn workspace @omnivore/appreader build
cp packages/appreader/build/bundle.js apple/OmnivoreKit/Sources/Views/Resources/bundle.js
cp packages/appreader/build/bundle.js android/Omnivore/app/src/main/assets/bundle.js
api:
yarn workspace @omnivore/api dev
web:
yarn workspace @omnivore/web dev
qp:
yarn workspace @omnivore/api dev_qp
content_handler:
yarn workspace @omnivore/content-handler build
puppeteer:
yarn workspace @omnivore/puppeteer-parse build
content_fetch: content_handler puppeteer
yarn workspace @omnivore/content-fetch build
yarn workspace @omnivore/content-fetch start