Website for AkukinHQ's send off project. OTSUAQUAA~
Make sure to have the following:
- Node 20
- git
- pnpm (replaces npm as a node package manager)
We recommed you use Volta to manage Node and pnpm!
And then install the project dependencies:
pnpm iIt is recommended to use VS Code with the following extensions:
- Svelte for VS Code (
svelte.svelte-vscode) - ESLint (
dbaeumer.vscode-eslint) - Prettier - Code formatter (
esbenp.prettier-vscode)
Additionally, enabling Format on save (editor.formatOnSave) will avoid having to run Prettier manually (pnpm format).
It is highly recommended to run the following commands to configure git for this repository:
git config merge.conflictstyle diff3
git config pull.rebase trueThis makes merging much easier for git-based projects.
To run a development server:
pnpm dev
# or start the server and open the app in a new browser tab
pnpm dev --openTo create a production version of the app:
pnpm buildYou can preview the production build with pnpm preview.
To deploy your app, you may need to install an adapter for your target environment.