habitica/website/client
Kalista Payne 5648092112 Squashed commit of the following:
commit deecf669d3e0b7d865a5e41ddf12611b0d25c1ac
Author: Kalista Payne <kalista@habitica.com>
Date:   Wed Aug 13 17:37:41 2025 -0500

    fix(background): *inside* forest witchs cottage

commit 977ebb5b7866d687727402ddaefa470932750491
Author: Kalista Payne <kalista@habitica.com>
Date:   Wed Aug 13 17:08:05 2025 -0500

    feat(content): October and November releases

commit fe46733a618501e688c590a9c05175f8504d3473
Author: Kalista Payne <kalista@habitica.com>
Date:   Tue Aug 12 17:06:59 2025 -0500

    fix(content): missing strings and release dates

commit fd4d69be71e38c8e985799369a370c50cb5230af
Author: Kalista Payne <kalista@habitica.com>
Date:   Tue Aug 12 16:51:06 2025 -0500

    chore(sprites): compile, update subproj

commit c055213790a32449d6bd6082168b34a1ff8e8554
Author: Kalista Payne <kalista@habitica.com>
Date:   Tue Aug 12 16:49:14 2025 -0500

    feat(content): September 2025 Gala and monthly
2025-08-19 14:37:42 -05:00
..
public/static refactor(client): move to Vite by @phillipthelen 2025-06-11 19:20:11 -05:00
scripts Remove Storybook files and packages (#15040) 2023-12-13 20:18:13 +01:00
src Squashed commit of the following: 2025-08-19 14:37:42 -05:00
tests/unit refactor(client): move to Vite by @phillipthelen 2025-06-11 19:20:11 -05:00
.browserslistrc old client structure 2019-10-01 11:44:38 +02:00
.eslintrc.js refactor(client): move to Vite by @phillipthelen 2025-06-11 19:20:11 -05:00
index.html refactor(client): move to Vite by @phillipthelen 2025-06-11 19:20:11 -05:00
package-lock.json refactor(client): move to Vite by @phillipthelen 2025-06-11 19:20:11 -05:00
package.json refactor(client): move to Vite by @phillipthelen 2025-06-11 19:20:11 -05:00
postcss.config.js misc, fix client tests 2019-10-15 15:32:53 +02:00
README.md Remove Storybook files and packages (#15040) 2023-12-13 20:18:13 +01:00
vite.config.mjs Fix deploying static files to S3 (#15450) 2025-06-12 10:24:24 -05:00
vitest.config.js refactor(client): move to Vite by @phillipthelen 2025-06-11 19:20:11 -05:00

Habitica Client

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Run your unit tests

npm run test:unit

Lints and fixes files

npm run lint

Customize configuration

See Configuration Reference.

Vue Structure

Currently pages and components are mixed in /src/components this is not a good way to find the files easy.

Thats why each changed / upcoming page / component should be put in either /src/components or in the /src/pages directory.

Inside Pages, each page can have a subfolder which contains sub-components only needed for that page - otherwise it has to be added to the normal components folder.

At the end of all the changes - the components should only contain components needed between all pages