1
Fork 0
This commit is contained in:
Tobias Berger 2022-01-28 10:45:34 +00:00 committed by GitHub
parent 58adf03193
commit d1f386d00c
2 changed files with 5 additions and 16 deletions

View file

@ -1,5 +1,10 @@
FROM archlinux FROM archlinux
# Set up pacman
RUN pacman-key --init RUN pacman-key --init
RUN pacman-key --populate RUN pacman-key --populate
# Install git and yarn
RUN pacman --noconfirm -Syu git yarn RUN pacman --noconfirm -Syu git yarn
# Set the git editor to be VS Code (for obvious reasons)
RUN git config --global core.editor code --wait RUN git config --global core.editor code --wait

View file

@ -1,16 +0,0 @@
# Next + Preact + Typescript + Eslint + Prettier
A starter for Preact with Typescript with the fast Vite and all static code testing with Eslint and formatting with Prettier.
![Vite + Preact + Typescript + Eslint + Prettier](/resources/screenshot.png)
A template based on the following technologies: [Next](https://github.com/vercel/next.js), [Preact](https://preactjs.com/), [Typescript](https://www.typescriptlang.org/), [Eslint](https://eslint.org/), [Prettier](https://prettier.io/).
Modified from [this template](https://github.com/TheSwordBreaker/vite-reactts-eslint-prettier)
## Installation
Clone the repo and run `yarn install`
## Start
After the successfull installation of the packages: `yarn start`