docs: proper README.md

This commit is contained in:
Ax333l 2022-11-06 16:36:12 +01:00
parent 6fc112492a
commit 1abf8e83a5

View File

@ -1,22 +1,18 @@
# create-svelte # ReVanced Website
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte). The official ReVanced Website.
## Creating a project ## Documentation
If you're seeing this, you've probably already done this step. Congrats! The documentation you see on the live website is generated from a collection of markup files found in [this git repository](https://github.com/revanced/revanced-documentation). The documentation "generator" currently supports asciidoc and markdown.
```bash It looks for markup files in the `testing-docs` folder by default, but you can specify a different path by changing the `REVANCED_DOCS_FOLDER` environment variable.
# create a new project in the current directory
npm init svelte
# create a new project in my-app
npm init svelte my-app
```
## Developing ## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: Install dependencies with `npm install` (or `pnpm install`).
Start a development server by running:
```bash ```bash
npm run dev npm run dev
@ -27,12 +23,10 @@ npm run dev -- --open
## Building ## Building
To create a production version of your app: To create a production build, run:
```bash ```bash
npm run build npm run build
``` ```
You can preview the production build with `npm run preview`. 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.