Skip to content

Commit 1867fe2

Browse files
authored
Mithril (#55)
* Totals pane working * Convert frontend to use mithril * Use standardjs * Fix circleci * Heroku setup * Add nodejs buildpack to heroku * Fix code ordering, view function first
1 parent 7dac040 commit 1867fe2

27 files changed

+5685
-552
lines changed

.babelrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"presets": ["es2015"],
3+
"plugins": [
4+
["transform-react-jsx", {
5+
"pragma": "m"
6+
}]
7+
]
8+
}

.circleci/config.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ jobs:
66
- image: python:3.6.3
77
steps:
88
- checkout
9+
- run: curl -sL https://deb.nodesource.com/setup_8.x | bash -
10+
- run: apt-get install nodejs -y
911
- run: make installdeps
10-
- run: pipenv run make coverage
12+
- run: pipenv run make coverage && npm test

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
node_modules/
2+
**/js/bin/
3+
14
# Byte-compiled / optimized / DLL files
25
__pycache__/
36
*.py[cod]

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ clean:
99
installdeps:
1010
pip install pipenv
1111
pipenv install --dev
12+
npm install
1213

1314
lint:
1415
flake8 $(SRC_DIR) && isort --check-only --recursive $(SRC_DIR)

app.json

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"scripts": {
1010
"postdeploy": "FLASK_APP=profbit/app.py flask syncdb"
1111
},
12+
"buildpacks": [{
13+
"url": "heroku/python"
14+
}, {
15+
"url": "heroku/nodejs"
16+
}],
1217
"addons": [{
1318
"plan": "heroku-postgresql"
1419
}],

0 commit comments

Comments
 (0)