https://github.com/syntaxrules/svelte-flask
https://github.com/syntaxrules/svelte-flask
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/syntaxrules/svelte-flask
- Owner: SyntaxRules
- Created: 2020-10-01T20:43:25.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-01T20:57:01.000Z (over 5 years ago)
- Last Synced: 2025-06-21T08:01:48.508Z (12 months ago)
- Language: Python
- Size: 17.6 KB
- Stars: 13
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Svelte-Flask
This is a project template for [Svelte](https://svelte.dev) + [Flask]() apps. It c
## Get started
Install the svelte dependencies...
```bash
npm install
```
...then start the server
```bash
python run.py
```
Navigate to [localhost:5000](http://localhost:5000). You should see your app running. Edit a the web pages in `htmlsrc`, save it, and reload the page to see your changes.
## Building a standalone *.exe
To create an optimised standalone version of the app:
```bash
sh build.sh
```
...then run it
```bash
# In linux
./dist/SvelteFlaskApp
```