Skip to content
Snippets Groups Projects
Commit a39bc3b9 authored by Matt Grau's avatar Matt Grau
Browse files

build frontend with parcel and serve with flask

parent f1a94460
No related branches found
No related tags found
No related merge requests found
......@@ -9,4 +9,7 @@
# ignore parcel dist and cache
*dist
.cache
\ No newline at end of file
.cache
# ignore build directory
frontend/build
\ No newline at end of file
......@@ -7,11 +7,13 @@ python3 -m venv demo_venv
```
Activate the python environment
```bash
source demo_venv/bin/activate
```
Verify that you are in the virtual environment
```bash
which pip
$ ~/tiqi-js-tutorial/demo_venv/bin/pip
......@@ -33,6 +35,7 @@ pip install flask
```
## Create JS Frontend
```bash
mkdir frontend
cd frontend
......@@ -41,4 +44,10 @@ npm init
```bash
npm install parcel-bundler
```
\ No newline at end of file
```
## Serve frontend from flask
```bash
npm run-script build
```
......@@ -10,7 +10,7 @@
<body>
<div id="root"></div>
<script src='src/index.js'></script>
<script src='index.js'></script>
</body>
</html>
\ No newline at end of file
import 'regenerator-runtime/runtime'
import "regenerator-runtime/runtime";
import React from "react";
import ReactDOM from "react-dom";
import 'bootstrap/dist/css/bootstrap.min.css';
import "bootstrap/dist/css/bootstrap.min.css";
import Device from './device'
import Device from "./src/device";
ReactDOM.render(<Device name="My Device" />, document.getElementById("root"));
......@@ -5,6 +5,7 @@
"main": "index.js",
"scripts": {
"start": "parcel start index.html",
"build": "rm -rf build; parcel build index.html --out-dir build --no-source-maps --no-content-hash index.css index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Matt Grau",
......@@ -17,4 +18,4 @@
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}
}
\ No newline at end of file
import flask
import flask_cors
from device import Device
device = Device()
app = flask.Flask(__name__)
flask_cors.CORS(app)
@app.route('/')
def main():
return 'Hello World!'
@app.route('/<path:path>')
def main(path):
return flask.send_from_directory('frontend/build/', path)
@app.route('/get_voltage')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment