Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spagettikod/opent1d
Personal diabetes management
https://github.com/spagettikod/opent1d
Last synced: 18 days ago
JSON representation
Personal diabetes management
- Host: GitHub
- URL: https://github.com/spagettikod/opent1d
- Owner: spagettikod
- Created: 2023-07-02T14:12:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-05T11:16:07.000Z (over 1 year ago)
- Last Synced: 2024-10-19T08:38:45.372Z (2 months ago)
- Language: Go
- Size: 65.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Build
```
docker build -t registry.spagettikod.se:8443/switchboard:0.1.0 .
docker build -t registry.spagettikod.se:8443/switchboard:0.1.0 --platform linux/amd64 .
docker buildx build --push --progress plain --tag registry.spagettikod.se:8443/opent1d:0.1.0 --platform linux/amd64,linux/arm64 .
```# www
## Using ChakraUI
```
corepack enable
corepack prepare yarn@stable --activate
yarn create vite opent1d --template react-ts
mv opent1d www
cd www
yarn
yarn dlx @yarnpkg/sdks vscode
yarn add @chakra-ui/react @emotion/react @emotion/styled framer-motion
yarn add @apollo/client graphql
yarn add -D typescript @graphql-codegen/cli @graphql-codegen/client-preset
yarn add -D @graphql-typed-document-node/core
```add to vite.config.ts :
```
server: {
host: "0.0.0.0"
}
```