Skip to content

Commit b4ac4df

Browse files
authored
Merge pull request #21 from letuananh/visko-0.2.3
Visko 0.2.3 rc1
2 parents aca20a0 + 0691122 commit b4ac4df

File tree

8 files changed

+7
-4
lines changed

8 files changed

+7
-4
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ find . -name "*.py~" -exec rm -rf {} \;
55
find . -name "__pycache__" -exec rm -rf {} \;
66

77

8-
tar -zcvf dist/visko_site.tar.gz visko_site manage.py
8+
tar -zcvf dist/visko.tar.gz visko_site manage.py requirements.txt LICENSE.txt README.md
File renamed without changes.
File renamed without changes.
File renamed without changes.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
django<2.0
2-
coolisf>=0.2.3b2, <0.3
2+
coolisf>=0.2.3, <0.3

visko/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
__issue__ = "https://github.com/letuananh/visualkopasu/issues/"
1515
__maintainer__ = "Le Tuan Anh"
1616
__version_major__ = "0.2.3" # follow PEP-0440
17-
__version__ = "{}b4".format(__version_major__)
18-
__version_long__ = "{} - Beta 4".format(__version_major__)
17+
__version__ = "{}rc1".format(__version_major__)
18+
__version_long__ = "{} - Release Candidate 1".format(__version_major__)
1919
__status__ = "4 - Beta"

visko_site/settings.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
# Where all Visko data is stored
3333
VISKO_ROOT = os.path.expanduser('~/local/visko/')
34+
VISKO_DB = os.path.expanduser('~/local/visko/data/visko.server.db')
3435

3536

3637
# Application definition
@@ -84,6 +85,8 @@
8485

8586
DATABASES = {
8687
'default': {
88+
'ENGINE': 'django.db.backends.sqlite3',
89+
'NAME': VISKO_DB,
8790
'USER': '', # Not used with sqlite3.
8891
'PASSWORD': '', # Not used with sqlite3.
8992
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.

0 commit comments

Comments
 (0)