Skip to content

Commit 4516c1d

Browse files
committed
Initial commit
0 parents  commit 4516c1d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+44470
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

.eslintrc.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": ["**/*"],
4+
"plugins": ["@nx"],
5+
"overrides": [
6+
{
7+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
8+
"rules": {
9+
"@nx/enforce-module-boundaries": [
10+
"error",
11+
{
12+
"enforceBuildableLibDependency": true,
13+
"allow": [],
14+
"depConstraints": [
15+
{
16+
"sourceTag": "*",
17+
"onlyDependOnLibsWithTags": ["*"]
18+
}
19+
]
20+
}
21+
]
22+
}
23+
},
24+
{
25+
"files": ["*.ts", "*.tsx"],
26+
"extends": ["plugin:@nx/typescript"],
27+
"rules": {}
28+
},
29+
{
30+
"files": ["*.js", "*.jsx"],
31+
"extends": ["plugin:@nx/javascript"],
32+
"rules": {}
33+
}
34+
]
35+
}

.gitignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
dist
5+
tmp
6+
/out-tsc
7+
8+
# dependencies
9+
node_modules
10+
11+
# IDEs and editors
12+
/.idea
13+
.project
14+
.classpath
15+
.c9/
16+
*.launch
17+
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
37+
# System Files
38+
.DS_Store
39+
Thumbs.db
40+
41+
.nx/cache
42+
43+
# Expo
44+
node_modules/
45+
.expo/
46+
.yarn/
47+
dist/
48+
npm-debug.*
49+
*.jks
50+
*.p8
51+
*.p12
52+
*.key
53+
*.mobileprovision
54+
*.orig.*
55+
web-build/
56+
cache/
57+
58+
59+
apps/mobile-e2e/artifacts

.prettierignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Add files here to ignore them from prettier formatting
2+
/dist
3+
/coverage
4+
/.nx/cache

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.vscode/extensions.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"nrwl.angular-console",
4+
"esbenp.prettier-vscode",
5+
"firsttris.vscode-jest-runner",
6+
"dbaeumer.vscode-eslint"
7+
]
8+
}

README.md

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# End
2+
3+
<a alt="Nx logo" href="https://nx.dev" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png" width="45"></a>
4+
5+
**This workspace has been generated by [Nx, a Smart, fast and extensible build system.](https://nx.dev)**
6+
7+
8+
## Start the app
9+
10+
To start the development server run `nx serve mobile`. Open your browser and navigate to http://localhost:4200/. Happy coding!
11+
12+
13+
## Generate code
14+
15+
If you happen to use Nx plugins, you can leverage code generators that might come with it.
16+
17+
Run `nx list` to get a list of available plugins and whether they have generators. Then run `nx list <plugin-name>` to see what generators are available.
18+
19+
Learn more about [Nx generators on the docs](https://nx.dev/plugin-features/use-code-generators).
20+
21+
## Running tasks
22+
23+
To execute tasks with Nx use the following syntax:
24+
25+
```
26+
nx <target> <project> <...options>
27+
```
28+
29+
You can also run multiple targets:
30+
31+
```
32+
nx run-many -t <target1> <target2>
33+
```
34+
35+
..or add `-p` to filter specific projects
36+
37+
```
38+
nx run-many -t <target1> <target2> -p <proj1> <proj2>
39+
```
40+
41+
Targets can be defined in the `package.json` or `projects.json`. Learn more [in the docs](https://nx.dev/core-features/run-tasks).
42+
43+
## Want better Editor Integration?
44+
45+
Have a look at the [Nx Console extensions](https://nx.dev/nx-console). It provides autocomplete support, a UI for exploring and running tasks & generators, and more! Available for VSCode, IntelliJ and comes with a LSP for Vim users.
46+
47+
## Ready to deploy?
48+
49+
Just run `nx build demoapp` to build the application. The build artifacts will be stored in the `dist/` directory, ready to be deployed.
50+
51+
## Set up CI!
52+
53+
Nx comes with local caching already built-in (check your `nx.json`). On CI you might want to go a step further.
54+
55+
- [Set up remote caching](https://nx.dev/core-features/share-your-cache)
56+
- [Set up task distribution across multiple machines](https://nx.dev/nx-cloud/features/distribute-task-execution)
57+
- [Learn more how to setup CI](https://nx.dev/recipes/ci)
58+
59+
## Connect with us!
60+
61+
- [Join the community](https://nx.dev/community)
62+
- [Subscribe to the Nx Youtube Channel](https://www.youtube.com/@nxdevtools)
63+
- [Follow us on Twitter](https://twitter.com/nxdevtools)

apps/mobile-e2e/.babelrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"presets": [
3+
[
4+
"@nx/react/babel",
5+
{
6+
"runtime": "automatic"
7+
}
8+
]
9+
],
10+
"plugins": []
11+
}

apps/mobile-e2e/.detoxrc.json

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
{
2+
"testRunner": {
3+
"args": {
4+
"$0": "jest",
5+
"config": "./jest.config.json"
6+
},
7+
"jest": {
8+
"setupTimeout": 120000
9+
}
10+
},
11+
"apps": {
12+
"ios.debug": {
13+
"type": "ios.app",
14+
"build": "cd ../../apps/mobile/ios && xcodebuild -workspace Mobile.xcworkspace -scheme Mobile -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
15+
"binaryPath": "../../apps/mobile/ios/build/Build/Products/Debug-iphonesimulator/Mobile.app"
16+
},
17+
"ios.release": {
18+
"type": "ios.app",
19+
"build": "cd ../../apps/mobile/ios && xcodebuild -workspace Mobile.xcworkspace -scheme Mobile -configuration Release -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' -derivedDataPath ./build -quiet",
20+
"binaryPath": "../../apps/mobile/ios/build/Build/Products/Release-iphonesimulator/Mobile.app"
21+
},
22+
23+
"ios.local": {
24+
"type": "ios.app",
25+
"build": "npx nx run mobile:build --platform ios --profile preview --wait --local --no-interactive --output=../../apps/mobile/dist/Mobile.tar.gz",
26+
"binaryPath": "../../apps/mobile/dist/Mobile.app"
27+
},
28+
29+
"android.debug": {
30+
"type": "android.apk",
31+
"build": "cd ../../apps/mobile/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug",
32+
"binaryPath": "../../apps/mobile/android/app/build/outputs/apk/debug/app-debug.apk"
33+
},
34+
"android.release": {
35+
"type": "android.apk",
36+
"build": "cd ../../apps/mobile/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release",
37+
"binaryPath": "../../apps/mobile/android/app/build/outputs/apk/release/app-release.apk"
38+
},
39+
40+
"android.local": {
41+
"type": "android.apk",
42+
"build": "npx nx run mobile:build --platform android --profile preview --wait --local --no-interactive --output=../../apps/mobile/dist/Mobile.apk",
43+
"binaryPath": "../../apps/mobile/dist/Mobile.apk"
44+
}
45+
},
46+
"devices": {
47+
"simulator": {
48+
"type": "ios.simulator",
49+
"device": {
50+
"type": "iPhone 14"
51+
}
52+
},
53+
"emulator": {
54+
"type": "android.emulator",
55+
"device": {
56+
"avdName": "Pixel_4a_API_30"
57+
}
58+
}
59+
},
60+
"configurations": {
61+
"ios.sim.release": {
62+
"device": "simulator",
63+
"app": "ios.release"
64+
},
65+
"ios.sim.debug": {
66+
"device": "simulator",
67+
"app": "ios.debug"
68+
},
69+
70+
"ios.sim.local": {
71+
"device": "simulator",
72+
"app": "ios.local"
73+
},
74+
75+
"android.emu.release": {
76+
"device": "emulator",
77+
"app": "android.release"
78+
},
79+
"android.emu.debug": {
80+
"device": "emulator",
81+
"app": "android.debug"
82+
},
83+
84+
"android.emu.local": {
85+
"device": "emulator",
86+
"app": "android.local"
87+
}
88+
}
89+
}

apps/mobile-e2e/.eslintrc.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"extends": ["plugin:@nx/react", "../../.eslintrc.json"],
3+
"ignorePatterns": ["!**/*"],
4+
"overrides": [
5+
{
6+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
7+
"rules": {}
8+
},
9+
{
10+
"files": ["*.ts", "*.tsx"],
11+
"rules": {}
12+
},
13+
{
14+
"files": ["*.js", "*.jsx"],
15+
"rules": {}
16+
}
17+
]
18+
}

apps/mobile-e2e/jest.config.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"preset": "../../jest.preset",
3+
"rootDir": ".",
4+
"testMatch": [
5+
"<rootDir>/src/**/*.test.ts?(x)",
6+
"<rootDir>/src/**/*.spec.ts?(x)"
7+
],
8+
"testTimeout": 120000,
9+
"maxWorkers": 1,
10+
"globalSetup": "detox/runners/jest/globalSetup",
11+
"globalTeardown": "detox/runners/jest/globalTeardown",
12+
"reporters": ["detox/runners/jest/reporter"],
13+
"testEnvironment": "detox/runners/jest/testEnvironment",
14+
"verbose": true,
15+
"setupFilesAfterEnv": ["<rootDir>/test-setup.ts"],
16+
"transform": {
17+
"^.+\\.(ts|js|html)$": [
18+
"ts-jest",
19+
{ "tsconfig": "<rootDir>/tsconfig.e2e.json" }
20+
]
21+
}
22+
}

0 commit comments

Comments
 (0)