Home
Softono

Flask Vue Crud

Open source MIT Vue
847
Stars
351
Forks
3
Issues
20
Watchers
3 years
Last Commit

 About Flask Vue Crud

Single Page App with Flask and Vue.js

Platforms

Web Self-hosted

Languages

Vue

Links

Need Help Installing Flask Vue Crud?

We provide expert installation service for this software. Our team will install, configure, and secure Flask Vue Crud on your server. plans start at just $30.

Flask Vue Crud

View on GitHub

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:

    $ 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

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

    $ cd client
    $ npm install
    $ npm run dev
    

    Navigate to http://localhost:5173