File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ This template is what I ended up with after testing a few different configuratio
12
12
13
13
## Application Structure
14
14
15
- The template is basically one Flask application with with two blueprints:
15
+ The template is basically one Flask application with two blueprints:
16
16
17
- 1 . Api App: Blueprint uses FlaskRestful to serve resources at the ` /api ` url endpoint.
17
+ 1 . Api App: Blueprint uses Flask-RESTful to serve resources at the ` /api ` url endpoint.
18
18
2 . Client App: Minimal Blueprint used only to serve the a single-page Vue.js App at the root endpoint ` / `
19
19
20
20
@@ -32,7 +32,7 @@ The Vue.js application is also scaffolded with examples of basic usage of Filter
32
32
#### Flask Api Structure (Api App)
33
33
34
34
The second blueprint is served by the Api App Blueprint.
35
- This bluprint is setup using Flask Restul , but that cab be discarded for those that prefer to use standard function view and routes.
35
+ This blueprint is setup using Flask-RESTful , but that can be discarded for those that prefer to use standard function view and routes.
36
36
37
37
38
38
## Installation
@@ -61,9 +61,9 @@ To install npm dependencies.
61
61
62
62
` npm run dev `
63
63
64
- This will server the Vue.js frontend application on ` localhost:8080 ` .
64
+ This will serve the Vue.js frontend application on ` localhost:8080 ` .
65
65
66
- Alternatively, you can also run just the flask server if you build your vuejs application first:
66
+ Alternatively, you can also run just the flask serve if you build your vuejs application first:
67
67
68
68
` npm run build `
69
69
You can’t perform that action at this time.
0 commit comments