You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -124,7 +125,6 @@ As this template is strongly opinionated, the following provides a curated list
124
125
125
126
###### Community
126
127
127
-
-[vitesse-addons](https://github.com/JohnCampionJr/vitesse-addons) by [@johncampionjr](https://github.com/johncampionjr) - additional options for integrations, including [Prettier](https://prettier.io) and [Storybook](https://storybook.js.org)
128
128
-[vitesse-ssr-template](https://github.com/frandiox/vitesse-ssr-template) by [@frandiox](https://github.com/frandiox) - Vitesse with SSR
129
129
-[vitespa](https://github.com/ctholho/vitespa) by [@ctholho](https://github.com/ctholho) - Like Vitesse but without SSG/SSR
130
130
-[vitailse](https://github.com/zynth17/vitailse) by [@zynth17](https://github.com/zynth17) - Like Vitesse but with TailwindCSS
@@ -133,10 +133,11 @@ As this template is strongly opinionated, the following provides a curated list
133
133
-[vitesse-enterprise](https://github.com/FranciscoKloganB/vitesse-enterprise) by [@FranciscoKloganB](https://github.com/FranciscoKloganB) - Consistent coding styles regardless of team-size.
134
134
-[vitecamp](https://github.com/nekobc1998923/vitecamp) by [@nekobc1998923](https://github.com/nekobc1998923) - Like Vitesse but without SSG/SSR/File based routing, includes Element Plus
135
135
-[vitesse-lite-react](https://github.com/lxy-yz/vitesse-lite-react) by [@lxy-yz](https://github.com/lxy-yz) - vitesse-lite React fork
136
+
-[vide](https://github.com/Nico-Mayer/vide) by [@nico-mayer](https://github.com/Nico-Mayer) - Vite superlight Beginner Starter Template
136
137
137
138
## Try it now!
138
139
139
-
> Vitesse requires Node >=14
140
+
> Vitesse requires Node >=14.18
140
141
141
142
### GitHub Template
142
143
@@ -189,8 +190,22 @@ And you will see the generated file in `dist` that ready to be served.
189
190
190
191
Go to [Netlify](https://app.netlify.com/start) and select your clone, `OK` along the way, and your App will be live in a minute.
191
192
193
+
### Docker Production Build
194
+
195
+
First, build the vitesse image by opening the terminal in the project's root directory.
196
+
197
+
```bash
198
+
docker buildx build . -t vitesse:latest
199
+
```
200
+
201
+
Run the image and specify port mapping with the `-p` flag.
202
+
203
+
```bash
204
+
docker run --rm -it -p 8080:80 vitesse:latest
205
+
```
206
+
192
207
## Why
193
208
194
209
I have created several Vite apps recently. Setting the configs up is kinda the bottleneck for me to make the ideas simply come true within a very short time.
195
210
196
-
So I made this starter template for myself to create apps more easily, along with some good practices that I have learned from making those apps. It's strongly opinionated, but feel free to tweak it or even maintains your own forks. [(see community maintained variation forks)](#variations)
211
+
So I made this starter template for myself to create apps more easily, along with some good practices that I have learned from making those apps. It's strongly opinionated, but feel free to tweak it or even maintain your own forks. [(see community maintained variation forks)](#variations)
0 commit comments