momentic-mobile 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -0
- package/bilt.test.yaml +8 -0
- package/bin/cli.js +3908 -0
- package/momentic.config.yaml +1 -0
- package/no-app.test.yaml +22 -0
- package/notion-app.test.yaml +110 -0
- package/npm-shrinkwrap.json +16804 -0
- package/package.json +88 -0
- package/squire.test.yaml +53 -0
- package/static/assets/index-d0Ide3Bj.css +1 -0
- package/static/assets/index-oUn-laij.js +530 -0
- package/static/favicon.ico +0 -0
- package/static/index.html +15 -0
- package/xero.test.yaml +32 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# momentic-mobile
|
|
2
|
+
|
|
3
|
+
 [![npm]](https://www.npmjs.com/package/momentic-mobile)
|
|
4
|
+
|
|
5
|
+
[npm]: https://img.shields.io/npm/v/momentic-mobile.svg?style=flat-square
|
|
6
|
+
|
|
7
|
+
The official CLI for Momentic Mobile. It allows you to build, run, and manage your end-to-end tests - all through natural language prompts.
|
|
8
|
+
|
|
9
|
+
**Learn more in the [official documentation](https://momentic.ai/docs)**.
|
|
10
|
+
|
|
11
|
+
## Get Started
|
|
12
|
+
|
|
13
|
+
1. Log in to [Momentic Cloud](https://cloud.momentic.ai) and generate an API key.
|
|
14
|
+
|
|
15
|
+
2. Install `momentic-mobile`:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install --save-dev momentic-mobile
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
3. Initialize a project:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npx momentic-mobile init
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
4. Start the app:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx momentic-mobile app
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Reporting Bugs
|
|
34
|
+
|
|
35
|
+
We welcome your feedback. Ping us in Slack, or file a [GitHub issue](https://github.com/momentic-ai/mobile-cli/issues).
|
|
36
|
+
|
|
37
|
+
## System Requirements
|
|
38
|
+
|
|
39
|
+
- Node 20+
|
|
40
|
+
- Windows 10+, Windows Server 2016+, or Windows Subsystem for Linux (WSL).
|
|
41
|
+
- macOS 13 Ventura, or macOS 14 Sonoma.
|
|
42
|
+
- Debian 11, Debian 12, Ubuntu 20.04 or Ubuntu 22.04, Ubuntu 24.04, on x86-64 and arm64 architecture.
|