/flask-vue-crud

Single Page App with Flask and Vue.js

Primary LanguagePython

flask-vue-crud

Single Page App with Flask and Vue.js forked from testdrivenio/flask-vue-crud, so you can goto the original link for documents

Setup:

Flask==1.0.2
Flask-Cors==3.0.7
npm v6.14.6
vue cli 3.7.0
pip install flask_sqlalchemy
pip install mysqlclient

Get Stated:

Great article to start here

How to create user in MySQL and then grant access?

USE mysql;
CREATE USER 'zhongche'@'%' IDENTIFIED BY 'swjt111';
GRANT ALL ON *.* TO 'zhongche'@'%';
FLUSH PRIVILEGES;

how to create database in MySQL?

CREATE DATABASE mydb;
FLUSH PRIVILEGES;

Connect to DB:

https://blog.miguelgrinberg.com/post/restful-authentication-with-flask
https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-iv-database

Ref

基于Flask 实现 Rest API 入门