Skip to content

Commit

Permalink
feat: app adipiscing (#1908)
Browse files Browse the repository at this point in the history
  • Loading branch information
o-az authored May 29, 2024
2 parents 228407a + d18e63b commit 19099cb
Show file tree
Hide file tree
Showing 119 changed files with 4,092 additions and 1,919 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
evm/contracts/proto/** linguist-generated
.zip filter=lfs diff=lfs merge=lfs -text
*.splinecode filter=lfs diff=lfs merge=lfs -text

*.lockb binary diff=lockb
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ process-compose.yml
process-compose.override.yml
*.cpuprofile
.vite-inspect
~partytown/
4 changes: 2 additions & 2 deletions .helix/languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ args = ["lsp-proxy"]
command = "biome"

[[language]]
file-types = ["astro"]
indent = { tab-width = 2, unit = " " }
injection-regex = "astro"
language-servers = [{ name = "astro-ls", except-features = ["format"] }, "biome"]
name = "astro"
roots = ["package.json", "astro.config.ts", "tsconfig.json"]
scope = "source.astro"
# not yet released
# block-comment-tokens = { start = "<!--", end = "-->" }
roots = ["package.json", "astro.config.ts"]

[[language]]
auto-format = true
Expand Down
1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ vite.config.*.timestamp-*
.eslintcache
.prettiercache
stats
~partytown
4 changes: 4 additions & 0 deletions app/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Union's Web App

## General Guidelines

- Components that are only used used within a single route should follow the official SvelteKit guideline and be placed in the same directory as the route ([reference](https://kit.svelte.dev/docs/project-structure#project-files)).

## Tools Used

- Data fetching: [TanStack Query](https://tanstack.com/query/latest/docs/framework/svelte/ssr)
Expand Down
2 changes: 1 addition & 1 deletion app/app.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
packages = {
app = unstablePkgs.buildNpmPackage {
npmDepsHash = "sha256-Y1GE1Obv8/xIhbujrTwTthNoW42j3vKbxEUbjUPPMI4=";
npmDepsHash = "sha256-5+fAahFR7yOAx9zFXe9r+AbQDjAXkWoYV9auuQZop6E=";
src = ./.;
sourceRoot = "app";
npmFlags = [ "--legacy-peer-deps" ];
Expand Down
2 changes: 1 addition & 1 deletion app/environment.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
interface EnvironmentVariables {
readonly NODE_ENV: "development" | "production" | "test"
readonly PORT: string
readonly APP_URL: string
readonly VERSION: string // from package.json#version
readonly COMMIT_SHA: string
readonly VITE_APP_VERSION: string
readonly ETHERSCAN_API_KEY: string
readonly HASURA_ADMIN_SECRET: string
// `vite-plugin-inspect`
readonly INSPECT: string
// `rollup-plugin-visualizer`
Expand Down
Loading

0 comments on commit 19099cb

Please sign in to comment.