forked from suyu/website
1
0
Fork 0
Go to file
million1156 7362b23d0d Add back the amount of stars the repository has 2024-03-27 08:49:16 -05:00
src Add back the amount of stars the repository has 2024-03-27 08:49:16 -05:00
static add blog page 2024-03-13 21:55:05 +00:00
.env.example Added support for gitlab stars for the front page 2024-03-13 14:12:51 +01:00
.gitignore live member count, remove navbar items 2024-03-12 16:40:19 +00:00
.npmrc initial commit <3 2024-03-06 15:05:24 +00:00
.prettierignore initial commit <3 2024-03-06 15:05:24 +00:00
.prettierrc Added tailwind support 2024-03-08 13:14:38 +02:00
README.md Replace default Svelte readme 2024-03-22 09:17:12 -05:00
module.d.ts carousel 2024-03-07 11:35:43 +00:00
package-lock.json feat: new dropdown, friendship stuffz, passwords :3c 2024-03-18 02:15:05 +00:00
package.json feat: new dropdown, friendship stuffz, passwords :3c 2024-03-18 02:15:05 +00:00
pnpm-lock.yaml feat: add preservation card 2024-03-12 19:37:22 -07:00
postcss.config.cjs Added tailwind support 2024-03-08 13:14:38 +02:00
server.js don't run stuff as root??? 2024-03-08 22:13:52 +00:00
svelte.config.js api boilerplate 2024-03-10 01:37:10 +00:00
tailwind.config.cjs add cool page transitions, accounts page revamp 2024-03-16 00:30:53 +00:00
tsconfig.json api boilerplate 2024-03-10 01:37:10 +00:00
vite.config.ts live member count, remove navbar items 2024-03-12 16:40:19 +00:00

README.md

Suyu website

This project contains the source code for the Suyu website, found at suyu.dev

Developing

If you are deeloping, please take note of the .env.example & the secrets config (found at src/lib/server/secrets/secrets.example.json). At minimum, please make sure to clone the secrets.example.json file and rename it to secrets.json. Otherwise, the project will not run or build (you don't have to edit the values to get it running, but you can if you'd like).

Once you've installed dependencies with npm install (or pnpm install or yarn), you can start a development server by running:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of our app, you can run:

npm run build