manifest 4.12.1 → 4.12.2
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
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
[Manifest](https://manifest.build) is a **backend** your AI can understand and your team can trust.
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
It provides a complete backend to your client app without the hassle that comes with it. It actually fits into **a single YAML file**.
|
|
3
|
+
It allows you to create a backend with data, storage, logic and an admin panel. All is defined in **1 YAML file** that both humans and LLMs can understand and edit. ✨
|
|
6
4
|
|
|
7
5
|
Here is an example of a complete Manifest app:
|
|
8
6
|
|
|
@@ -28,17 +26,34 @@ entities:
|
|
|
28
26
|
- { name: isChampion, type: boolean }
|
|
29
27
|
```
|
|
30
28
|
|
|
31
|
-
##
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
Create a new Manifest project by running:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
yarn create manifest my-project
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Using an AI coding editor or LLM-powered workflow? These commands configure your project to work seamlessly with it:
|
|
32
38
|
|
|
33
|
-
|
|
39
|
+
##### Cursor
|
|
34
40
|
|
|
35
41
|
```bash
|
|
36
|
-
|
|
42
|
+
yarn create manifest my-project --cursor
|
|
37
43
|
```
|
|
38
44
|
|
|
39
|
-
|
|
45
|
+
##### Copilot
|
|
40
46
|
|
|
41
47
|
```bash
|
|
42
|
-
|
|
43
|
-
npm run test:e2e
|
|
48
|
+
yarn create manifest my-project --copilot
|
|
44
49
|
```
|
|
50
|
+
|
|
51
|
+
##### Windsurf
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
yarn create manifest my-project --windsurf
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
This sets up my-project with Manifest, tailored to your environment.
|
|
58
|
+
|
|
59
|
+
`npm create` also works if you don’t use Yarn.
|
package/dist/admin/index.html
CHANGED
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
<style>@import"https://fonts.googleapis.com/css?family=Rubik:300,400,400i,500";@charset "UTF-8";html,body{margin:0;padding:0}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}html{background-color:#fff;font-size:10px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;text-size-adjust:100%}body{font-family:Rubik,sans-serif}body{color:#535356;font-size:1em;font-weight:400;line-height:1.5}*:focus{outline:none}html{overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;text-size-adjust:100%;scroll-behavior:smooth}@media screen and (max-width: 999px){html{font-size:10.22px}}body{text-rendering:optimizeLegibility;overflow:hidden;background:#f5f7f9;color:#303032;font-size:1.2rem}*[href]{cursor:pointer}</style><link rel="stylesheet" href="styles.8ccfc17311992374.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.8ccfc17311992374.css"></noscript></head>
|
|
10
10
|
<body>
|
|
11
11
|
<app-root></app-root>
|
|
12
|
-
<script src="runtime.b0ecb6141ff09499.js" type="module"></script><script src="polyfills.2aefc0784c3d32a6.js" type="module"></script><script src="main.
|
|
12
|
+
<script src="runtime.b0ecb6141ff09499.js" type="module"></script><script src="polyfills.2aefc0784c3d32a6.js" type="module"></script><script src="main.76cbae026d532418.js" type="module"></script></body>
|
|
13
13
|
</html>
|