https://github.com/wangy8961/flask-mongoengine-tutorial
How to use MongoEngine for your web app
https://github.com/wangy8961/flask-mongoengine-tutorial
Last synced: 8 months ago
JSON representation
How to use MongoEngine for your web app
- Host: GitHub
- URL: https://github.com/wangy8961/flask-mongoengine-tutorial
- Owner: wangy8961
- Created: 2019-04-04T05:33:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-08T03:01:47.000Z (over 6 years ago)
- Last Synced: 2025-01-09T02:06:19.120Z (9 months ago)
- Language: Python
- Homepage: http://www.madmalls.com/blog/post/mongoengine/
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> 详情请参考: http://www.madmalls.com/blog/post/mongoengine/
You need install Python 3 first!
```
$ git clone https://github.com/wangy8961/flask-mongoengine-tutorial.git
$ cd flask-mongoengine-tutorial
$ python -m venv venv3
$ source venv3/bin/activate
(venv)$ pip install -r requirements.txt
```Then, you can run the flask app:
```bash
$ flask run
```Or, use flask shell to test mongoengine:
```bash
$ flask shell
```