Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joelseq/linkstowr-web
https://github.com/joelseq/linkstowr-web
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joelseq/linkstowr-web
- Owner: joelseq
- Created: 2023-07-15T05:30:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-10T01:45:11.000Z (5 months ago)
- Last Synced: 2024-11-30T08:52:16.171Z (about 2 months ago)
- Language: Svelte
- Homepage: https://linkstowr.com
- Size: 2.49 MB
- Stars: 13
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LinkStowr Web App
Web App for creating an account and generating an access token which can be used to save links from a Chromium based browser directly into Obsidian.
The other repos:
[LinkStowr API](https://github.com/joelseq/linkstowr-api)
[LinkStowr Chrome Extension](https://github.com/joelseq/linkstowr-extension)
[LinkStowr Obsidian Plugin](https://github.com/joelseq/obsidian-linkstowr)
## Developing
In order to run the local development setup for the web app, you will also need to run the server locally. You can follow the
instructions in the [API repo's README](https://github.com/joelseq/linkstowr-api) for how to do that.After you've got the server setup and running, install the dependencies for this repo with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of your app:
```bash
npm run build
```You can preview the production build with `npm run preview`.