You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added core package with configuration, exceptions, file handling, and name utilities.
- Implemented controller generation logic with template rendering.
- Established middleware for routing and callback handling.
- Created input method helper for handling hidden input fields in forms.
- Developed a base controller template for MVC structure.
- Updated project structure and renamed package from `mvc_flask` to `flask_mvc`.
- Enhanced testing framework with comprehensive tests for new features.
- Updated documentation references to reflect the new package name.
[](https://github.com/marcuxyz/mvc_flask)
[](https://github.com/marcuxyz/flask-mvc)
Copy file name to clipboardExpand all lines: docs/quickstart.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# Quickstart
2
2
3
-
To start the use `mvc_flask` you need to import and register in your application, e.g:
3
+
To start the use `flask_mvc` you need to import and register in your application, e.g:
4
4
5
5
```python
6
6
from flask import Flask
7
-
frommvc_flaskimport FlaskMVC
7
+
fromflask_mvcimport FlaskMVC
8
8
9
9
app = Flask(__name__)
10
10
FlaskMVC(app)
@@ -32,7 +32,7 @@ app
32
32
├── index.html
33
33
```
34
34
35
-
**By default, the mvc_flask assumes that your application directory will be app and if it doesn't exist, create it! If you can use another directory, you can use the path parameter when the instance of FlaskMVC is initialized. E.g:**
35
+
**By default, the flask_mvc assumes that your application directory will be app and if it doesn't exist, create it! If you can use another directory, you can use the path parameter when the instance of FlaskMVC is initialized. E.g:**
0 commit comments