Skip to content

Commit b8a8fc1

Browse files
author
Vic Shóstak
committed
Update dependencies
1 parent fa2273b commit b8a8fc1

File tree

11 files changed

+402
-332
lines changed

11 files changed

+402
-332
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# VS Code
2+
.vscode/
3+
14
# Python
25
__pycache__/
36

@@ -7,9 +10,6 @@ node_modules/
710
# Virtualenv
811
venv/
912

10-
# JetBrains
11-
.idea/
12-
1313
# Project
1414
static/css/
1515
static/js/

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 Vic Shóstak https://webartisans.org
3+
Copyright (c) 2019 Vic Shóstak https://1wa.co
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Pipfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
[[source]]
2-
32
url = "https://pypi.python.org/simple"
43
verify_ssl = true
54
name = "pypi"
65

7-
86
[packages]
9-
107
bottle = "*"
118
bottle-sqlalchemy = "*"
129
"Jinja2" = "*"
1310
MarkupSafe = "*"
1411
SQLAlchemy = "*"
1512

16-
1713
[dev-packages]
18-
14+
autopep8 = "*"

Pipfile.lock

Lines changed: 54 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_devtools/install_init_database.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Import Python packages
2-
import os, sqlite3
2+
import os
3+
import sqlite3
34

45
# Define DB file
56
db_file = 'articles.db'

0 commit comments

Comments
 (0)