https://github.com/hydroshare/portal
https://github.com/hydroshare/portal
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hydroshare/portal
- Owner: hydroshare
- License: mit
- Created: 2020-03-20T17:30:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-20T20:09:41.000Z (about 6 years ago)
- Last Synced: 2025-08-12T22:47:58.336Z (10 months ago)
- Language: Vue
- Size: 118 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Developing a Single Page App with Flask and Vue.js
### Want to learn how to build this?
Check out the [post](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.7 -m venv env
$ source env/bin/activate
(env)$ pip install -r requirements.txt
(env)$ python app.py
```
Navigate to [http://localhost:5000](http://localhost:5000)
1. Run the client-side Vue app in a different terminal window:
```sh
$ cd client
$ npm install
$ npm run serve
```
Navigate to [http://localhost:8080](http://localhost:8080)