Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Jun 9, 2024
1 parent b54deb1 commit 124f08e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
},
////////// scm //////////
"scm.defaultViewMode": "tree",
"conventionalCommits.scopes": ["workspace", "actions", "lint", "deps", "docs", "policy", "provider"],
////////// Git //////////
"git.autofetch": true,
////////// Editor //////////
Expand Down Expand Up @@ -281,6 +280,7 @@
// Make sure we're using biomejs for all filetypes
// Need this because we need to override the default json and svelte formatters that folks might have configured
"editor.defaultFormatter": "biomejs.biome",
"biome.rename": true,
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- GraphQL: [Houdini](https://www.houdinigraphql.com/) & [Hasura](https://hasura.io/)
- Authentication: [Auth.js](https://authjs.dev/)
- PWA: [Vite PWA](https://vite-pwa-org.netlify.app/frameworks/sveltekit.html)
- Linter/Formatter: [Biome](https://biomejs.dev/)

## Features

Expand Down
34 changes: 18 additions & 16 deletions apps/console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,15 @@ crane export ghcr.io/xmlking/spectacular/console:v0.1.3 - | tar -tvf - | grep -v
| Service | URL |
| --------- | ------------------------------------------------- |
| Postgres | postgres://postgres:postgres@localhost:5432/local |
| Traefik | https://traefik.traefik.me/dashboard/ |
| Hasura | https://hasura.traefik.me |
| GraphQL | https://graphql.traefik.me |
| Auth | https://auth.traefik.me/healthz |
| Storage | https://storage.traefik.me/healthz |
| Minio | https://minio.traefik.me |
| Mailhog | https://mailhog.traefik.me |
| Dashboard | https://dashboard.traefik.me |
| Tailcall | https://gateway.traefik.me |
| Traefik | <https://traefik.traefik.me/dashboard/> |
| Hasura | <https://hasura.traefik.me> |
| GraphQL | <https://graphql.traefik.me> |
| Auth | <https://auth.traefik.me/healthz> |
| Storage | <https://storage.traefik.me/healthz> |
| Minio | <https://minio.traefik.me> |
| Mailhog | <https://mailhog.traefik.me> |
| Dashboard | <https://dashboard.traefik.me> |
| Tailcall | <https://gateway.traefik.me> |

#### (Or) Start backend services with nhost cli

Expand All @@ -123,13 +123,13 @@ nhost up --apply-seeds
| Service | URL |
| --------- | ------------------------------------------------- |
| Postgres | postgres://postgres:postgres@localhost:5432/local |
| Hasura | https://local.hasura.nhost.run |
| GraphQL | https://local.graphql.nhost.run |
| Auth | https://local.auth.nhost.run |
| Storage | https://local.storage.nhost.run |
| Functions | https://local.functions.nhost.run/v1/echo |
| Dashboard | https://local.dashboard.nhost.run |
| Mailhog | https://local.mailhog.nhost.run |
| Hasura | <https://local.hasura.nhost.run> |
| GraphQL | <https://local.graphql.nhost.run> |
| Auth | <https://local.auth.nhost.run> |
| Storage | <https://local.storage.nhost.run> |
| Functions | <https://local.functions.nhost.run/v1/echo> |
| Dashboard | <https://local.dashboard.nhost.run> |
| Mailhog | <https://local.mailhog.nhost.run> |

#### Apply seeds

Expand All @@ -147,6 +147,8 @@ hasura seed apply --database-name default --endpoint https://hasura.traefik.me -
```bash
cd apps/console
turbo dev
# or use `--log-order=stream` to disable TUI
turbo dev --log-order=stream
# or run with `prod` profile and
# overload envelopment variables from `.env.prod`
NODE_ENV=prod turbo dev
Expand Down
4 changes: 2 additions & 2 deletions apps/console/src/routes/(auth)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
import { page } from '$app/stores';
import * as m from '$i18n/messages';
import { TabAnchor, TabGroup } from '@skeletonlabs/skeleton';
import { User2 } from 'lucide-svelte';
import { UserRound } from 'lucide-svelte';
</script>

<div class="mx-auto flex max-w-md flex-col justify-center px-6 py-12 lg:px-8 lg:py-32">
<div class="card p-6 pb-8 pt-8">
<div>
<div class="mb-4 flex flex-row items-center justify-center">
<div>
<User2 size={42} />
<UserRound size={42} />
</div>
</div>
<TabGroup justify="justify-center">
Expand Down

0 comments on commit 124f08e

Please sign in to comment.