StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Angelos Chatzimparmpas c72519d979 Test 5 years ago
.vscode Initialization of the project 5 years ago
__pycache__ Initialization of the project 5 years ago
backend Initialization of the project 5 years ago
dist Initialization of the project 5 years ago
flask/lib/python3.7 Test 5 years ago
frontend Initialization of the project 5 years ago
myenv Initialization of the project 5 years ago
LICENSE Initialization of the project 5 years ago
README.md Initialization of the project 5 years ago
run.py Initialization of the project 5 years ago

README.md

flask-vue-spa

Vue.js SPA served over Flask microframework

  • Python: 3.6.3
  • Vue.js: 2.5.2
  • vue-router: 3.0.1
  • axios: 0.16.2

Tutorial on how I build this app: https://medium.com/@oleg.agapov/full-stack-single-page-application-with-vue-js-and-flask-b1e036315532

Build Setup

# install front-end
cd frontend
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production/Flask with minification
npm run build


# install back-end
cd ../backend
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
cd ..

# serve back-end at localhost:5000
FLASK_APP=run.py flask run