Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oleg-darkdev/daisy-svelte-starter
https://github.com/oleg-darkdev/daisy-svelte-starter
frontend fsd serverless sveltejs sveltekit sveltekit-tailwindcss sveltekit-template tailwindcss typescript vercel
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/oleg-darkdev/daisy-svelte-starter
- Owner: oleg-darkdev
- Created: 2024-04-18T20:00:31.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-05-11T21:38:29.000Z (6 months ago)
- Last Synced: 2024-10-11T12:06:53.196Z (about 1 month ago)
- Topics: frontend, fsd, serverless, sveltejs, sveltekit, sveltekit-tailwindcss, sveltekit-template, tailwindcss, typescript, vercel
- Language: Svelte
- Homepage:
- Size: 212 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The starter is prepared for deployment to [Vercel](https://vercel.com/).
Configured to use [Typescipt](https://www.typescriptlang.org/).
## Stack
- [SvelteJS](https://svelte.dev/)
- [SvelteKIT](https://kit.svelte.dev/)
- [TailwindCSS](https://tailwindcss.com/)
- [FSD architecture](https://feature-sliced.design/ru/docs/get-started)## Commands
```bash
# clone repository and install packages
git clone https://github.com/oleg-darkdev/;
``````bash
# start the server
cd backend;yarn;
yarn dev
``````bash
# start the front-end & open the app in a new browser tab
cd frontend;yarn;
yarn dev --open
``````bash
# create a production version of front-end app :
cd frontend;yarn build;
``````bash
# create a production version of back-end app :
cd backend;yarn build;
```