Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Fix config import #74

Merged
merged 1 commit into from
Nov 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

# Django settings for django_agfk project.
import os
import config
import sys

SETTINGS_PATH = os.path.realpath(os.path.dirname(__file__))
CLIENT_SERVER_PATH = SETTINGS_PATH
AGFK_PATH = os.path.realpath(os.path.join(SETTINGS_PATH, '../'))

sys.path.append(AGFK_PATH)

import config

ADMINS = (
# ('Your Name', '[email protected]'),
Expand Down