The ExploreCraft website! https://explorecraft.net
Go to file
2024-06-21 09:14:37 +02:00
docs/assets Update Screenshots in README 2023-06-30 16:21:43 +02:00
src [a] add a note to the gallery 2024-06-21 09:14:37 +02:00
static [a] lossy optimized image previews for faster loading 2024-06-21 09:10:48 +02:00
.gitignore Rewrite 2023-06-05 01:25:15 +03:00
.npmrc Rewrite 2023-06-05 01:25:15 +03:00
.prettierrc progress 2023-06-08 21:36:35 +02:00
LICENSE License Project with the MPL v2.0 2023-06-16 15:57:23 +02:00
package.json [a] fuse.js for fuzzy search 2024-06-12 14:05:32 +02:00
README.md [c] formatting 2024-06-12 11:03:14 +02:00
svelte.config.js [c] finish initial modcards 2024-06-12 10:12:23 +02:00
vite.config.js Rewrite 2023-06-05 01:25:15 +03:00
yarn.lock [a] fuse.js for fuzzy search 2024-06-12 14:05:32 +02:00

ExploreCraft: Website

This is the ExploreCraft Website. Created with Svelte, PicoCSS, and dedication by Sangelo & LogolicusZ.

ExploreCraft Website Screenshot

License

This project is licensed under the MPL v2.0. More info here.

Developing

To start developing, clone the repository.

# clone the website
git clone https://gitpot.org/ExploreCraft/website.git

Once you've cloned the repository you'll need to install the required dependencies, and then, start a development server:

# install dependencies (you can also use pyarn install or yarn)
yarn install

# start vite development server
yarn run dev

# or start the server and also open the website in a new browser tab
yarn run dev -- --open

  VITE v4.3.9  ready in 358 ms

  ➜  Local:   http://127.0.0.1:5173/
  ➜  Network: use --host to expose
  ➜  press h to show help

This server will automatically apply changes you do to the code, so just start working and Vite will do the rest. No need to refresh!

Building

To build a production-ready version of this website:

# run build action
yarn run build

You can also preview the production build (You'll need to build the website first if you haven't done so already):

# build the website
yarn run build

# start a preview server
yarn run preview