Skip to content
This repository was archived by the owner on Apr 18, 2019. It is now read-only.

Commit 5c32086

Browse files
committed
Rename
1 parent 84fe3a4 commit 5c32086

12 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# leaderboard
1+
# Chase cat Server
22

3-
Simple leaderboard API server based on Flask and SQLite
3+
Server for the game chasecat
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

leaderboard/routes/api.py chasecat/routes/api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from Crypto.Cipher import AES
44
from Crypto.Util.Padding import unpad
55
from flask import Blueprint, request, jsonify, current_app
6-
from leaderboard.models import db, Record
6+
from chasecat.models import db, Record
77

88
bp = Blueprint('api', __name__)
99

fabfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
def deploy():
9-
with cd('/code/leaderboard'):
9+
with cd('/code/chasecat'):
1010
run('git pull origin master')
1111
run('pipenv install')
1212
run('pipenv run python manage.py db upgrade')

manage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
def _create_flask_app(_):
7-
from leaderboard import create_app
7+
from chasecat import create_app
88
app = create_app()
99
Alembic(app)
1010
return app

wsgi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from leaderboard import create_app
1+
from chasecat import create_app
22

33
app = create_app()

0 commit comments

Comments
 (0)