Go to file
Jess Martin 05b70fd159
Quick start instructions (#53)
* Remove some extraneous tags, links, etc

* Templatize <head> with name, description, URL
2022-09-01 11:42:35 -04:00
.github Deploy to Netlify with redirect support (#50) 2022-08-31 10:10:04 -04:00
src Quick start instructions (#53) 2022-09-01 11:42:35 -04:00
static Add favicon files (#33) 2022-08-23 12:26:18 -04:00
.DS_Store Boilerplate svelte app 2022-07-14 11:41:33 -07:00
.eslintignore Remove extraneous ignored files 2022-07-20 16:35:24 -04:00
.eslintrc.cjs Disable recommended-requiring-type-checking rule 2022-07-14 12:26:46 -07:00
.gitignore Boilerplate svelte app 2022-07-14 11:41:33 -07:00
.prettierrc.cjs Set prettier htmlWhitespaceSensitivity to ignore 2022-07-22 15:26:43 -07:00
LICENSE Initial commit 2022-01-19 08:31:25 -08:00
README.md Deploy to Netlify with redirect support (#50) 2022-08-31 10:10:04 -04:00
package-lock.json Deploy to Netlify with redirect support (#50) 2022-08-31 10:10:04 -04:00
package.json Deploy to Netlify with redirect support (#50) 2022-08-31 10:10:04 -04:00
postcss.config.cjs Boilerplate svelte app 2022-07-14 11:41:33 -07:00
svelte.config.js Deploy to Netlify with redirect support (#50) 2022-08-31 10:10:04 -04:00
tailwind.config.cjs Add class strategy for selecting dark theme (#44) 2022-08-29 16:07:36 -07:00
tsconfig.json Reformatting all the files that prettier missed 2022-07-20 16:47:18 -04:00
tsnode-loader.js Boilerplate svelte app 2022-07-14 11:41:33 -07:00
vite.config.ts Reformatting all the files that prettier missed 2022-07-20 16:47:18 -04:00

README.md

Webnative App Template

Netlify Status

A web app template for Webnative.

Setup

Install dependencies.

npm install

Develop

Work on the application in local development.

npm run dev

Navigate to http://localhost:5173 in your web browser.

Build

Export a static build.

npm run build

The build outputs the static site to the build directory.

Publish

NOTE: SvelteKit Single-Page Applications require redirects in order to support routing. This is not currently supported by IPFS, so the Fission Publish GitHub action is not currently supported.

The Webnative Template App demo is currently hosted on Netlify, but it should be supported on any static hosting platform (Vercel, Cloudflare Pages, etc).

In order to deploy your own Webnative application on Netlify, simply create a new Netlify site connected to your app's repository and Netlify will take care of the rest. No Netlify-specific configuration is needed.

Customize

  • app.html - the SEO meta tags will need to be changed.
  • lib/app-name.ts - choose a better application name
  • To customize the application's Tailwind theme, change tailwind.config.ts - link to DaisyUI customization page.