Run project
npm install
npm run dev
docker build -t ledun/storyboard-app:latest
docker push ledun/storyboard-app:latest
docker-compose up -d
VITE_API_URL = your_api_url
Live Demo: http://78.111.111.77:4173/
Local Host: http://localhost:5173/
export const GET_ALL_STORYBOARDS = `
query {
storyboards {
nodes {
id
title
description
createdAt
updatedAt
}
}
}
`;
Parametre | Tip |
---|---|
id |
ID! |
title |
String |
description |
String |
status |
String |
tags |
String |
query($id: Int!) {
storyboard(id: $id) {
id
title
description
}
}
`;
Parametre | Tip |
---|---|
id |
ID! |
query {
storyboards {
totalCount
nodes {
id
title
description
createdAt
updatedAt
}
}
}
`;
mutation CreateStoryboard($storyboard: StoryboardInput!) {
createStoryboard(input: { storyboard: $storyboard }) {
storyboard {
id
title
description
status
tags
}
}
}
`;
Parametre | Tip |
---|---|
id |
ID! |
title |
String! |
description |
String! |
status |
String! |
tags |
String! |
mutation DeleteStoryboard($input: DeleteStoryboardInput!) {
deleteStoryboard(input: $input) {
storyboard {
id
}
}
}
`;
Parametre | Tip |
---|---|
id |
ID! |
mutation UpdateStoryboard($input: UpdateStoryboardInput!) {
updateStoryboard(input: $input) {
storyboard {
id
title
description
}
}
}
`;
Parametre | Tip |
---|---|
id |
ID! |
title |
String! |
description |
String! |
status |
String! |
tags |
String! |
https://github.com/TarikSogukpinar/storyboard-app
https://hub.docker.com/repository/docker/ledun/storyboard-app/general