8bu / vitesse-enterprise

Home Page:vitesse-enterprise.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vitesse Enterprise Starter

Vitesse - Opinionated Vite starter template with rigorous linting


Live Netlify demo
Live Vercel demo


Features

*CLI only. VSCode plugin does not support configuration files.

Pre-packed

UI Frameworks

Icons

Plugins

Nice to haves

  • Alias @ to <rootDir>
  • Alias ~ to <rootDir>/src a.k.a. <srcDir>
  • Predefined and fully typed global variables:
    • VITE_APP_VERSION is read from package.json version at build time
    • VITE_APP_BUILD_EPOCH is populated as new Date().getTime() at build time

Dev tools

Variations

This template is strongly opinionated with my personal preferences and feature sets. It is a fork of the original template created by @antfu and also takes inspiration from vitesse-stackter made by @shamscorner.

For an up-to-date list of official and community contributions to the vitesse ecosystem, we recommend checking the official repository's variations section.

Try it now

GitHub Template

Create a repo from this template on GitHub.

Clone to local

If you prefer to do it manually with the cleaner git history

npx degit FranciscoKloganB/vitesse-enterprise my-vitesse-enterprise-app
cd my-vitesse-enterprise-app
pnpm i # If you don't have pnpm installed, run: npm install -g pnpm

Checklist

When you use this template, try follow the checklist to update your info properly

  • Select your git repository of choice
    • Using GitHub?
      • Remove .github/funding.yml file which contains the funding info
      • Remove .gitlab folder and .gitlab-ci.yml file
    • Using GitLab?
      • Remove the .github folder
    • Using neither? Perform both steps.
  • Remove vercel.json or netlify.yml depending on your deployment provider.
  • Rename name field in package.json
  • Change the author name in LICENSE
  • Change the title in App.vue
  • Change the favicon in public
  • Clean up the READMEs and remove routes
  • Bump project dependencies (e.g.: dependabot) - We update them on a best-effort-basis, every now and then.

Usage

Development

Run and visit http://localhost:4000

pnpm dev

Code formatting

pnpm lint

Testing

# Interactive test run
pnpm test:components
pnpm test:e2e
# Headless ( can run both in one step with: pnpm test:ci )
pnpm test:ci:components
pnpm test:ci:e2e

Build for production

# Ouputs files to dist folder. Ready to be served in SPA mode.
pnpm build:prod
# Outputs files to dist folder which passed through the Vite SSG pipeline. Ready to be served.
pnpm build:prod:ssg

Previewing

# Runs project locally with files from dist folder
pnpm preview
# Can also run locally with HTTPS (may require sudo)
pnpm preview:https

Separation of Concerns

  • Create separate folder for each module and place them under /src folder
  • The following folders are auto imported within each module
    • components/
    • modules/
    • pages/
    • stores/
  • Place all the layouts in the core/layouts folder
  • Place all the custom styles in the core/assets/styles folder and import them into main.{css,scss}

Deploy on Netlify

Go to Netlify and select your clone, OK along the way, and your App will be live in a minute.

Deploy on Vercel

Vercel has some short-commings regarding pnpm based projects. After creating and importing the project on Vercel dashboard you will need to navigate to the project settings and override the Build Command and Install Command respectively, with the following bash commands:

  # Build Command
  npx pnpm i --store=node_modules/.pnpm-store && npx pnpm run build:prod:ssg
  # Install Command
  npm i -g pnpm && pnpm -i

Alternatevely, for zero configuration on import you need to alter package.json scripts to have a build and install entries with the commands above.

Why

On top of what was mentioned by Anthony Fu in the original post, working in conjunction with others often requires strict styling rules. Creating a seamless developer experience across VSCode, CLI and CI/CD consumes time. Vue, Vite and, Vitesse, are amazing tools for web developmen and are now my go to choices for development. To avoid repeating myself over and over again for to get this configurations going, I decided to fork Vitesse repository and create a baseline project for my own (or other people) use, enabling us to be vite. Pun intended.

Feedback

If you notice any bug, inconsistency or change for improvement, feel free to either create an issue so that I may try to fix it later or to propose a pull request with the changes.

About

vitesse-enterprise.vercel.app

License:MIT License


Languages

Language:TypeScript 54.5%Language:Vue 20.9%Language:JavaScript 10.6%Language:CSS 8.7%Language:HTML 4.5%Language:Shell 0.8%