Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/korolr/wordpress-svelte
Frontend writen on svelt
https://github.com/korolr/wordpress-svelte
javascript js single-page-app single-page-applications spa svelte theme wordpress
Last synced: 1 day ago
JSON representation
Frontend writen on svelt
- Host: GitHub
- URL: https://github.com/korolr/wordpress-svelte
- Owner: korolr
- Created: 2019-05-24T19:29:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-03T10:57:06.000Z (almost 2 years ago)
- Last Synced: 2023-03-01T01:47:31.766Z (over 1 year ago)
- Topics: javascript, js, single-page-app, single-page-applications, spa, svelte, theme, wordpress
- Language: HTML
- Homepage: https://blog.korolr.me
- Size: 201 KB
- Stars: 18
- Watchers: 2
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Deploy
1. Clone this rep
2. Change env to tou url
3. Build```bash
npm i
npm run build
```4. Send folder to server
_Psst — looking for a shareable component template? Go here --> [sveltejs/component-template](https://github.com/sveltejs/component-template)_
---
# svelte app
This is a project template for [Svelte](https://svelte.dev) apps. It lives at https://github.com/sveltejs/template.
To create a new project based on this template using [degit](https://github.com/Rich-Harris/degit):
```bash
npx degit sveltejs/template svelte-app
cd svelte-app
```_Note that you will need to have [Node.js](https://nodejs.org) installed._
## Get started
Install the dependencies...
```bash
cd svelte-app
npm install
```...then start [Rollup](https://rollupjs.org):
```bash
npm run dev
```Navigate to [localhost:5000](http://localhost:5000). You should see your app running. Edit a component file in `src`, save it, and reload the page to see your changes.
## Deploying to the web
### With [now](https://zeit.co/now)
Install `now` if you haven't already:
```bash
npm install -g now
```Then, from within your project folder:
```bash
now
```As an alternative, use the [Now desktop client](https://zeit.co/download) and simply drag the unzipped project folder to the taskbar icon.
### With [surge](https://surge.sh/)
Install `surge` if you haven't already:
```bash
npm install -g surge
```Then, from within your project folder:
```bash
npm run build
surge public
```