Cleanup
This commit is contained in:
parent
58adf03193
commit
d1f386d00c
2 changed files with 5 additions and 16 deletions
|
@ -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
|
16
README.md
16
README.md
|
@ -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`
|
|
Reference in a new issue