Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tailor-platform/templates
https://github.com/tailor-platform/templates
cue templates
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tailor-platform/templates
- Owner: tailor-platform
- License: mpl-2.0
- Created: 2023-04-20T06:25:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-30T04:31:38.000Z (3 months ago)
- Last Synced: 2024-07-30T08:12:33.227Z (3 months ago)
- Topics: cue, templates
- Language: CUE
- Homepage:
- Size: 622 KB
- Stars: 7
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-cue - tailor-platform - A customizable ERP platform. (Projects)
README
# Deploy the app template
To deploy our app templates, you need tailorctl and a Tailor account.
If you don’t have a Tailor account,
please [contact us](https://form.typeform.com/to/QONhVIuj?typeform-source=www.tailor.tech).## Prerequisites
To install tailorctl and other dependencies, you can use homebrew.
```
brew install tailor-platform/tap/tailorctl
brew install coreutils yq cue gh
```For more details, please visit our [documentation](https://docs.tailor.tech/getting-started/quickstart).
To get started with our app templates follow the steps below:
## Quick Start
### 1. Clone our app templates and install dependencies
```bash
git clone [email protected]:tailor-platform/templates.git
cd templates
pnpm i
```### 2. Choose an app template
```bash
cd ${app_template}
```### 3. Run the following commands to deploy the app
```bash
tailorctl workspace create -i # follow the interactive prompt
make init
make apply
make seed
```### 4. Get the access token to use the GraphQL API in the playground
```bash
make machine-token
```Please set the token in the Headers section of the playground as follows:
```json
{
"Authorization": "bearer ${your_access_token}"
}
```### 5. Finally, open the GraphQL playground to run queries
```
make app
```