├── .env ├── .env.plugin ├── .env.web ├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.html ├── logo.png ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── release.config.js ├── screenshots ├── api-server.png ├── demo.gif ├── load-plugin.png ├── settings-api-server-feature.png └── settings-plugin-feature.png ├── src ├── App.css ├── App.tsx ├── favicon.svg ├── index.css ├── main.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/.env -------------------------------------------------------------------------------- /.env.plugin: -------------------------------------------------------------------------------- 1 | VITE_MODE=plugin -------------------------------------------------------------------------------- /.env.web: -------------------------------------------------------------------------------- 1 | VITE_MODE=web -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/index.html -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/release.config.js -------------------------------------------------------------------------------- /screenshots/api-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/screenshots/api-server.png -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/screenshots/demo.gif -------------------------------------------------------------------------------- /screenshots/load-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/screenshots/load-plugin.png -------------------------------------------------------------------------------- /screenshots/settings-api-server-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/screenshots/settings-api-server-feature.png -------------------------------------------------------------------------------- /screenshots/settings-plugin-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/screenshots/settings-plugin-feature.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/src/favicon.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haydenull/logseq-plugin-react-boilerplate/HEAD/vite.config.ts --------------------------------------------------------------------------------