Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/testdrivenio/flask-vue-crud
Single Page App with Flask and Vue.js
https://github.com/testdrivenio/flask-vue-crud
crud flask javascript python restful-api vue vuejs
Last synced: 3 months ago
JSON representation
Single Page App with Flask and Vue.js
- Host: GitHub
- URL: https://github.com/testdrivenio/flask-vue-crud
- Owner: testdrivenio
- License: mit
- Created: 2018-05-15T13:31:38.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-08-22T23:13:22.000Z (about 1 year ago)
- Last Synced: 2024-06-18T00:39:36.762Z (5 months ago)
- Topics: crud, flask, javascript, python, restful-api, vue, vuejs
- Language: Vue
- Homepage:
- Size: 464 KB
- Stars: 796
- Watchers: 23
- Forks: 346
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - testdrivenio/flask-vue-crud - Single Page App with Flask and Vue.js (Vue)
README
# Developing a Single Page App with Flask and Vue.js
### Want to learn how to build this?
Check out the [tutorial](https://testdriven.io/developing-a-single-page-app-with-flask-and-vuejs).
## Want to use this project?
1. Fork/Clone
1. Run the server-side Flask app in one terminal window:
```sh
$ cd server
$ python3 -m venv env
$ source env/bin/activate
(env)$ pip install -r requirements.txt
(env)$ flask run --port=5001 --debug
```Navigate to [http://localhost:5001](http://localhost:5001)
1. Run the client-side Vue app in a different terminal window:
```sh
$ cd client
$ npm install
$ npm run dev
```Navigate to [http://localhost:5173](http://localhost:5173)