The web app for recipe sharing built with SvelteKit, Tailwind CSS, TypeScript which uses Appwrite as a backend service.
The project was developed by:
Once the project is downloaded, install dependencies with npm install and start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of the app:
npm run build
You can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.
The command below checks the code for formatting issues using Prettier (prettier --check .) and for potential code
quality issues using ESLint (eslint .).
npm run lint
This command formats the code using Prettier.
npm run format
The following command handles type-related generation tasks.
npm run check
check:watch is a watch mode version of check.