Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions manifest/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TOKEN_SECRET_KEY=ReplaceMeWithYourSecretKey
1 change: 1 addition & 0 deletions manifest/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 3 additions & 0 deletions manifest/.stackblitzrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"startCommand": "npm run manifest"
}
33 changes: 33 additions & 0 deletions manifest/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# 🦚 Manifest Demo

This is a [Manifest](https://manifest.build) starter project.

## Available scripts

In the project directory, you can run:

```
npm i
npm run manifest
```

Runs the app in the development mode.\
Open [http://localhost:1111](http://localhost:1111) to view the admin panel in your browser.\
Open [http://localhost:1111/api](http://localhost:1111/api) to view the REST API documentation in your browser.\

The page will reload when you make changes.

````
npm manifest:seed
```

Seeds dummy data for your entities and properties. This commands deletes the previous data.

## Access to the admin panel

**EMAIL:** [email protected]
**PASSWORD:** admin

## Learn More

You can learn more in the [Manifest documentation](https://manifest.build/docs).
Binary file added manifest/manifest/backend.db
Binary file not shown.
19 changes: 19 additions & 0 deletions manifest/manifest/backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Pokemon app

entities:
Pokemon:
properties:
- name
- {
name: type,
type: choice,
options: { values: [Fire, Water, Grass, Electric] }
}
- { name: level, type: number }
belongsTo:
- Trainer

Trainer:
properties:
- name
- { name: isChampion, type: boolean }
Loading