The ExploreCraft website! https://explorecraft.net
Find a file
2023-06-11 18:03:42 +02:00
docs/assets Readme without License initial commit 2023-06-09 19:25:14 +02:00
src Actually ACTUALLY ACUTUALLY add fonts back. 2023-06-11 18:03:42 +02:00
static Actually Actually add add fonts fonts back back 2023-06-11 18:01:25 +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 Readme without License initial commit 2023-06-09 19:25:14 +02:00
package-lock.json Rewrite 2023-06-05 01:25:15 +03:00
package.json Rewrite 2023-06-05 01:25:15 +03:00
README.md Update 'README.md' 2023-06-09 19:27:07 +02:00
svelte.config.js Rewrite 2023-06-05 01:25:15 +03:00
vite.config.js Rewrite 2023-06-05 01:25:15 +03:00

ExploreCraft: Website

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

License

This project is licensed under the [choose license]. More info here.

Developing

To start developing, clone the repository.

# clone the website
git clone https://gitpot.dev/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 pnpm install or yarn)
npm install

# start vite development server
npm run dev

# or start the server and also open the website in a new browser tab
npm 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
npm 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
npm run build

# start a preview server
npm run preview