Skip to content

Commit

Permalink
fix the url
Browse files Browse the repository at this point in the history
  • Loading branch information
saleh-mir committed Jul 25, 2024
1 parent 15194ce commit f3d9851
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions jesse/info.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from jesse.enums import exchanges as exchanges_enums, timeframes

# JESSE_API_URL = 'https://api1.jesse.trade/api'
JESSE_API_URL = 'http://localhost:8040/api'
# JESSE_WEBSITE_URL = 'https://jesse.trade'
JESSE_WEBSITE_URL = 'http://localhost:8040'
JESSE_API_URL = 'https://api1.jesse.trade/api'
# JESSE_API_URL = 'http://localhost:8040/api'
JESSE_WEBSITE_URL = 'https://jesse.trade'
# JESSE_WEBSITE_URL = 'http://localhost:8040'

BYBIT_TIMEFRAMES = [timeframes.MINUTE_1, timeframes.MINUTE_3, timeframes.MINUTE_5, timeframes.MINUTE_15, timeframes.MINUTE_30,
timeframes.HOUR_1, timeframes.HOUR_2, timeframes.HOUR_4, timeframes.HOUR_6, timeframes.HOUR_12, timeframes.DAY_1]
Expand Down
2 changes: 1 addition & 1 deletion jesse/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '1.0.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

# also change in version.py
VERSION = '1.0.0'
VERSION = '1.0.1'
DESCRIPTION = "A trading framework for cryptocurrencies"
with open("requirements.txt", "r", encoding="utf-8") as f:
REQUIRED_PACKAGES = f.read().splitlines()
Expand Down

0 comments on commit f3d9851

Please sign in to comment.