Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions app/.babelrc

This file was deleted.

23 changes: 23 additions & 0 deletions app/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright 2017-2020 Lawrence Livermore National Security, LLC and other
# CallFlow Project Developers. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: MIT

import os
from flask import Flask

app = Flask(__name__, static_url_path="", static_folder="./dist")


@app.route("/")
def index():
return app.send_static_file("index.html")


def main():
CALLFLOW_APP_PORT = int(os.getenv("CALLFLOW_APP_PORT", 8000))
app.run(host="127.0.0.1", port=CALLFLOW_APP_PORT)


if __name__ == "__main__":
main()
7 changes: 7 additions & 0 deletions app/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
{
{
"vue/dist/vue.js";
}
}
}
61 changes: 0 additions & 61 deletions app/build/check-versions.js

This file was deleted.

105 changes: 0 additions & 105 deletions app/build/utils.js

This file was deleted.

29 changes: 0 additions & 29 deletions app/build/vue-loader.conf.js

This file was deleted.

114 changes: 0 additions & 114 deletions app/build/webpack.base.conf.js

This file was deleted.

Loading