To start working on this project, run the commands below in your terminal after you have cloned the repo to your local machine. Once done, use localhost:5173 to run it on your machine.
npm install
npm run devHere are some pointers to get started developing:
- Check the current work assigned in the
Issues tab. - The
Projects tabshows the work progress as well as the roadmap for our work.
- The
libfolder is for your assets such as your images, components, css files, or script files. - The
routesfolder is for your pages. To make a new page athttp://localhost:5173/new-pageyou would make this:routes/new-page/+page.svelte. - Create a new component in
lib/components/ui/componentName.svelteand import it usingimport componentName from '$lib/components/ui/componentName.svelte';. - Images should be stored in
lib/assets/pageName/image.svg.