From d4fa8f9121e0013d39686b4efaa63064c1f3c96c Mon Sep 17 00:00:00 2001 From: saqibur Date: Thu, 14 Apr 2022 18:57:18 +0600 Subject: [PATCH] Add core app --- README.md | 8 ++++++++ apps/core/__init__.py | 0 apps/core/constants.py | 0 apps/core/helpers.py | 0 apps/core/models.py | 0 5 files changed, 8 insertions(+) create mode 100644 apps/core/__init__.py create mode 100644 apps/core/constants.py create mode 100644 apps/core/helpers.py create mode 100644 apps/core/models.py diff --git a/README.md b/README.md index 768b797..0a83a8a 100644 --- a/README.md +++ b/README.md @@ -136,6 +136,14 @@ For different API versions, we're assuming the following will change: Whereas the `model`s will be shared. +* How do you define a version 2? + +Currently we're proposing that major changes to the following, constitutes a new API version: +1. Representation of data, either for submission or retrieval +2. Major optimizations +3. Major code reorganization and code refactor + + ### `config` * Contains project configuration files, including the primary URL file * Contains settings split into `base`, `local`, `production` and `development` diff --git a/apps/core/__init__.py b/apps/core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/apps/core/constants.py b/apps/core/constants.py new file mode 100644 index 0000000..e69de29 diff --git a/apps/core/helpers.py b/apps/core/helpers.py new file mode 100644 index 0000000..e69de29 diff --git a/apps/core/models.py b/apps/core/models.py new file mode 100644 index 0000000..e69de29