An open API service indexing awesome lists of open source software.

https://github.com/syntaxrules/svelte-flask


https://github.com/syntaxrules/svelte-flask

Last synced: 10 months ago
JSON representation

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
```