项目作者: testdrivenio

项目描述 :
Single Page App with Flask and Vue.js
高级语言: Vue
项目地址: git://github.com/testdrivenio/flask-vue-crud.git
创建时间: 2018-05-15T13:31:38Z
项目社区:https://github.com/testdrivenio/flask-vue-crud

开源协议:MIT License

下载


Developing a Single Page App with Flask and Vue.js

Want to learn how to build this?

Check out the tutorial.

Want to use this project?

  1. Fork/Clone

  2. Run the server-side Flask app in one terminal window:

    1. $ cd server
    2. $ python3 -m venv env
    3. $ source env/bin/activate
    4. (env)$ pip install -r requirements.txt
    5. (env)$ flask run --port=5001 --debug

    Navigate to http://localhost:5001

  3. Run the client-side Vue app in a different terminal window:

    1. $ cd client
    2. $ npm install
    3. $ npm run dev

    Navigate to http://localhost:5173