mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-06-20 14:50:18 -05:00
| .. | ||
| .yarn/releases | ||
| psd | ||
| public | ||
| src | ||
| tools | ||
| .editorconfig | ||
| .env.example | ||
| .eslintrc.cjs | ||
| .gitignore | ||
| buildcheck.js | ||
| bun.lockb | ||
| index.html | ||
| nginx.conf.example | ||
| package.json | ||
| pnpm-lock.yaml | ||
| README.md | ||
| svelte.config.js | ||
| tsconfig.json | ||
| tsconfig.node.json | ||
| uno.config.ts | ||
| vite.config.ts | ||
AquaNet
This is the codebase for the new frontend of AquaDX. This project is also heavily WIP, so more details will be added later on.
Development
This project uses Svelte (NOT SvelteKit) + TypeScript + Sass, built using Vite. The preferred editor is VSCode.
Running locally
You will need to have Node.js (or equivalent) and pnpm installed, Start by installing dependencies by running:
pnpm install
Then, you would need to start your testing AquaDX server and configure the VITE_AQUA_HOST in .env (copy .env.example file to .env) to use your URL.
Please leave VITE_DATA_HOST unchanged if you're not sure what it is.
Finally, run:
pnpm run dev
Running locally (with bun)
Alternatively, If you prefer Bun, You can do the same as above.
Start by configuring the VITE_AQUA_HOST in .env (copy .env.example file to .env) to use your URL.
and finally:
bun install
bun run dev