Skip to content

Commit c2d79bb

Browse files
committedMay 4, 2019
Minor fixes and updates
1 parent e6e713c commit c2d79bb

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Background and Brief Intro
44

5-
Hosted in this repository is the open-sourced backend system under the hood of the iOS custom keyboard application [Nixacernis Keyboard](https://github.com/YangXuepei/Nixacernis-Keyboard).
5+
Hosted in this repository is the open-sourced backend system under the hood of the iOS custom keyboard application [Nixacernis Keyboard](https://github.com/MapleCCC/Nixacernis-Keyboard).
66

77
## Prior Knowledge and Jargons
88

‎makefile

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ autoformat:
1717
lint:
1818
pylint -E **/*.py
1919

20+
# Use with caution!
2021
clean:
2122
# Be careful this command may erase the database that's not source versioned.
2223
git clean -fdx

‎nixacernis/settings.py

-6
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,6 @@
8080
'default': {
8181
'ENGINE': 'django.db.backends.sqlite3',
8282
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
83-
},
84-
'production': {
85-
'ENGINE': 'django.db.backends.postgresql',
86-
'NAME': 'product_data',
87-
'USER': 'PostgreSQL_user',
88-
'PASSWORD': 'PostgreSQL_password'
8983
}
9084
}
9185

‎requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# For setup
22
bidict==0.18.0
33
Django==2.2
4-
Flask==1.0.2
54
gunicorn
65
django_heroku
76

0 commit comments

Comments
 (0)
Please sign in to comment.