Skip to content

Commit

Permalink
v2.21 - Lorentzian enhanced and makefile added
Browse files Browse the repository at this point in the history
[Screenipy Test] New Features Added - Test Passed - Merge OK
  • Loading branch information
pranjal-joshi authored Jan 29, 2024
2 parents 90cf11d + 60414f3 commit 37797c4
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ stock*.pkl
results*.pkl
*.spec
.DS_Store
.history/
30 changes: 30 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
build:
docker build -t screeni-py .

run:
docker run -d --name screeni-py -p 8501:8501 screeni-py

interactive-run:
docker run -p 8501:8501 screeni-py

shell:
docker run -it --entrypoint /bin/bash screeni-py

stop-container:
@if [ "$(shell docker ps -q -f name=screeni-py)" ]; then \
docker stop screeni-py; \
else \
echo "Container screeni-py is not running."; \
fi

remove-container:
@if [ "$(shell docker ps -a -q -f name=screeni-py)" ]; then \
docker rm screeni-py; \
else \
echo "Container screeni-py does not exist."; \
fi

system-clean:
docker system prune --force

rebuild: stop-container remove-container build system-clean
5 changes: 4 additions & 1 deletion src/classes/Changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from classes.ColorText import colorText

VERSION = "2.20"
VERSION = "2.21"

changelog = colorText.BOLD + '[ChangeLog]\n' + colorText.END + colorText.BLUE + '''
[1.00 - Beta]
Expand Down Expand Up @@ -287,4 +287,7 @@
[2.20]
1. Bugfixes - Clear cache button random key added to fix re-rendering issues
[2.21]
1. Dependency updated - `advanced-ta` lib for bugfixes and performance improvement in Lorentzian Classifier
''' + colorText.END

0 comments on commit 37797c4

Please sign in to comment.