Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #1

Merged
merged 33 commits into from
Aug 15, 2021
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c5e2be3
fix #2 - autoinstall dependencies offline
Jun 1, 2021
41857e0
fix #2 - autoinstall dependencies offline
Jun 3, 2021
23bbdd9
fix #3 - add ability to view data from other nodes in cluster
Jun 7, 2021
3421501
fix #3 - add ability to view data from other nodes in cluster
Jun 7, 2021
4143a1e
fix #3 - add ability to view data from other nodes in cluster
Jun 7, 2021
f1ca02b
add f_rebuild function
Jul 6, 2021
b628107
sanity
Jul 6, 2021
980e878
sanity
Jul 6, 2021
f0c6b7f
new tag for v3
Jul 6, 2021
1b6ef48
changes for v3
Jul 6, 2021
5165fea
+ fix #1 - Offline dependencies installation
swifty94 Aug 11, 2021
428332c
- clean-up and improve new View js code
swifty94 Aug 11, 2021
4f4eb73
- minor code improvements
swifty94 Aug 11, 2021
9d15c26
- remove unnecessary css
swifty94 Aug 12, 2021
9da58c4
Logging adjustments + Error handler to the View backend
swifty94 Aug 12, 2021
10be37f
Added ErrorHandler
swifty94 Aug 12, 2021
f561d5e
Temp change for testing haz requests. TODO: return demo hosts after h…
swifty94 Aug 13, 2021
12b3c0d
Added opt parameter table='stats' for TableStats._set() method; Purpo…
swifty94 Aug 13, 2021
8c90696
Added Hazelcast statistics (if isHazelcast=True)
swifty94 Aug 13, 2021
12b35a2
Testing of insertHaz(). OK
swifty94 Aug 13, 2021
0e77eb2
CSS adjustments. Added Clock to pain page. Added Dashboard template
swifty94 Aug 14, 2021
5ff7518
+ fix #10 - add statistics of the health of the hazelcast
swifty94 Aug 14, 2021
2b11186
+ fix #14 - Dashboard template updated > Live stats bar chart updatin…
swifty94 Aug 15, 2021
e3f8393
typo
swifty94 Aug 15, 2021
c10fe27
Readding git items
swifty94 Aug 15, 2021
8b7a0d5
Re-init git on dev
swifty94 Aug 15, 2021
d775646
Clean testing
swifty94 Aug 15, 2021
bed6b83
Bug fixes after live testing in cluster
swifty94 Aug 15, 2021
3cc333a
HTML\CSS\JS update to prettify the view
swifty94 Aug 15, 2021
d47d9c8
CHANGELOG created + updated README + added examples
swifty94 Aug 15, 2021
9c7f0ce
CHANGELOG created + updated README + added examples
swifty94 Aug 15, 2021
c0e2636
CHANGELOG created + updated README + added examples
swifty94 Aug 15, 2021
24c4b59
CHANGELOG created + updated README + added examples
swifty94 Aug 15, 2021
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
Prev Previous commit
Next Next commit
fix #2 - autoinstall dependencies offline
  • Loading branch information
master committed Jun 3, 2021
commit 41857e04bfa7ced28ae9e754fbbc0e2fee03c3da
25 changes: 14 additions & 11 deletions bin/app.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@ rem :Setting up venv + install dependencies if this is first run
rem :Starting app from venv if already set
rem :Adjust APP_HOME to actual path of project

SET APP_HOME=
cd %APP_HOME%
IF EXIST venv echo "Found venv"
.\venv\Scripts\activate && pythonw app.py
ELSE echo "Venv not found. Creating..."
py -m venv venv &&
echo "Install dependencies" &&
.\venv\Scripts\activate &&
cd dependencies &&
.\venv\Scripts\pip3.9.exe install * -f ./ --no-index &&
SET APP_HOME=C:\FTStats_v2.0.0\
cd %APP_HOME%
if exist venv\ (
echo "Found venv"
.\venv\Scripts\activate && pythonw app.py
) else (
echo "Venv not found. Creating + activating"
py -m venv venv
venv\Scripts\activate
echo "Install dependencies"
FOR %%i in (dep\*.whl) DO venv\Scripts\pip3.9.exe install %%i
FOR %%i in (dep\*.tar.gz) DO venv\Scripts\pip3.9.exe install %%i
cd %APP_HOME%
pythonw app.py
pythonw app.py
)