Skip to content

Commit

Permalink
feat(zkgm-dev): scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
cor committed Dec 4, 2024
1 parent b51adb1 commit 35ad7f8
Show file tree
Hide file tree
Showing 19 changed files with 3,287 additions and 0 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@
./e2e/e2e.nix
./devnet-compose/devnet-compose.nix
./drip/drip.nix
./zkgm-dev/zkgm-dev.nix
treefmt-nix.flakeModule
];

Expand Down
23 changes: 23 additions & 0 deletions zkgm-dev/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
node_modules

# Output
.output
.vercel
.netlify
.wrangler
/.svelte-kit
/build

# OS
.DS_Store
Thumbs.db

# Env
.env
.env.*
!.env.example
!.env.test

# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
1 change: 1 addition & 0 deletions zkgm-dev/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
38 changes: 38 additions & 0 deletions zkgm-dev/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# sv

Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).

## Creating a project

If you're seeing this, you've probably already done this step. Congrats!

```bash
# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app
```

## Developing

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```bash
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```bash
npm run build
```

You can preview the production build with `npm run preview`.

> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
Loading

0 comments on commit 35ad7f8

Please sign in to comment.