All Projects → Ailln → vue-flask-template

Ailln / vue-flask-template

Licence: MIT license
📦 一个快速搭建 Web 应用的模版!前端使用渐进式框架 Vue,后端使用微框架 Flask

Programming Languages

Vue
7211 projects
python
139335 projects - #7 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to vue-flask-template

Appkernel
API development made easy: a smart Python 3 API framework
Stars: ✭ 152 (+424.14%)
Mutual labels:  flask-application
flask-material-dashboard
Flask Dashboard - Material Design | AppSeed
Stars: ✭ 168 (+479.31%)
Mutual labels:  flask-template
ITL
Sample Web API implementation with .NET Core and DDD using Clean Architecture.
Stars: ✭ 29 (+0%)
Mutual labels:  vue-template
Flask ishuhui
Comic reading website built by flask.
Stars: ✭ 172 (+493.1%)
Mutual labels:  flask-application
flask-ocr
use flask and tesseract to have a basic ocr, also you need opencv2, this code use opencv2 to have a basic image process
Stars: ✭ 27 (-6.9%)
Mutual labels:  flask-application
clickbait-workshop
Pydata 2017 workshop: build a clickbait detector with python
Stars: ✭ 13 (-55.17%)
Mutual labels:  flask-application
Listen Now
Listen-now, 提供了多音乐平台的音乐搜索、播放、歌单播放、同步平台歌单到本地数据库,并计划开发智能音乐推荐系统。listen-now主要由学生层级的同学一起开发。
Stars: ✭ 139 (+379.31%)
Mutual labels:  flask-application
WGDashboard
Simplest dashboard for WireGuard VPN written in Python w/ Flask
Stars: ✭ 772 (+2562.07%)
Mutual labels:  flask-application
FUTURE
A private, free, open-source search engine built on a P2P network
Stars: ✭ 19 (-34.48%)
Mutual labels:  flask-application
NLP-Flask-Website
A simple Flask website for all NLP tasks which includes Text Preprocessing, Keyword Extraction, Text Summarization etc. Created Date: 30 Jan 2019
Stars: ✭ 43 (+48.28%)
Mutual labels:  flask-application
Json2html
🐍 Python module for converting complex JSON to HTML Table representation
Stars: ✭ 173 (+496.55%)
Mutual labels:  flask-application
RenameThemSubs
Rename multiple subtitles files to match video file names for automatic loading with just one click
Stars: ✭ 40 (+37.93%)
Mutual labels:  flask-application
AI-DRAW
Web-based Shape Recognition Deep Learning Application. This project has been created by my workshop /with @ytumint @veribilimiytu
Stars: ✭ 28 (-3.45%)
Mutual labels:  flask-application
Yublog
Person blog powered by flask.
Stars: ✭ 164 (+465.52%)
Mutual labels:  flask-application
template-element-ui
基于 Element-UI 的项目模板
Stars: ✭ 38 (+31.03%)
Mutual labels:  vue-template
Translatr
💬 Translate to multiple languages at once
Stars: ✭ 145 (+400%)
Mutual labels:  flask-application
flask-vuln
Pretty vulnerable flask app..
Stars: ✭ 23 (-20.69%)
Mutual labels:  flask-application
bank-statement-analysis
Flask application generating interactive visualisations from bank statements PDF documents
Stars: ✭ 31 (+6.9%)
Mutual labels:  flask-application
NER-and-Linking-of-Ancient-and-Historic-Places
An NER tool for ancient place names based on Pleiades and Spacy.
Stars: ✭ 26 (-10.34%)
Mutual labels:  flask-application
argon-dashboard-flask
Argon Dashboard - Flask Template | Creative-Tim
Stars: ✭ 52 (+79.31%)
Mutual labels:  flask-template

Vue Flask Template

📦 一个快速搭建 Web 应用的模版!前端使用渐进式框架 Vue,后端使用微框架 Flask

使用方法

  1. 点击本项目右上角的绿色按钮 Use this template(使用此模板),输入名称和说明,完成创建。

  2. 将刚刚创建好的项目克隆到本地,这里以本项目为例,实际操作时这里需要替换你自己的项目。

    git clone https://github.com/Ailln/vue-flask-template.git --depth 1
  3. 安装环境依赖,本项目需要 Node 环境和 Python 环境,如果对这部分不熟悉的看本文档最后的参考文章。

    注意:版本要求 Node version 12+, Python version 3.6+ 。

    # 前端环境依赖安装
    cd front
    npm install
    
    # 后端环境依赖安装
    cd back
    pip install -r requirements.txt
  4. 打开两个终端,分别启动前端和后端。

    # 启动前端
    cd front
    npm run dev
    
    # 启动后端
    cd back
    python app.py
  5. 在浏览器中打开:http://localhost:3000/ 即可预览。

  6. 根据你的需求修改代码。

项目结构

.
├── front # 前端
│    ├── package.json # 前端依赖
│    ├── package-lock.json
│    ├── public
│    ├── src
│    │    ├── App.vue # 主页面
│    │    ├── components # 子组件
│    │    │    └── HelloWorld.vue
│    │    ├── assets # 静态资源
│    │    └── main.js
│    └── vite.config.js
├── back # 后端
│    ├── app.py
│    └── requirements.txt # 后端依赖
├── README.md
├── LICENSE
└── .gitignore

许可

参考

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].