Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prokawsar/cv-generator
Building with Svelte3, SvelteKit
https://github.com/prokawsar/cv-generator
svelte svelte3 sveltekit tailwindcss varcel
Last synced: 12 days ago
JSON representation
Building with Svelte3, SvelteKit
- Host: GitHub
- URL: https://github.com/prokawsar/cv-generator
- Owner: prokawsar
- Created: 2022-08-29T15:44:57.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T13:11:44.000Z (almost 2 years ago)
- Last Synced: 2024-11-04T01:24:57.322Z (about 2 months ago)
- Topics: svelte, svelte3, sveltekit, tailwindcss, varcel
- Language: JavaScript
- Homepage: https://cv-generator-xi.vercel.app/
- Size: 735 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CV GENERATOR
[![CodeQL](https://github.com/prokawsar/cv-generator/actions/workflows/codeql.yml/badge.svg?branch=master)](https://github.com/prokawsar/cv-generator/actions/workflows/codeql.yml)
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/prokawsar/cv-generator/tree/master.svg?style=shield)](https://dl.circleci.com/status-badge/redirect/gh/prokawsar/cv-generator/tree/master)
## Cloning project
```bash
# create a new project in the current directory
git clone git remote add origin https://github.com/prokawsar/cv-generator.git
# change directory to root of cv-generator
cd cv-generator
# install dependency
npm install```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
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 your app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.