diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9e6fa89 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +__pycache__ +*.py[cod] +venv/ +*.sqlite3 +.DS_Store +.env diff --git a/hello/__init__.py b/hello/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/hello/settings.py b/hello/settings.py new file mode 100644 index 0000000..80ae557 --- /dev/null +++ b/hello/settings.py @@ -0,0 +1,112 @@ +""" +Django settings for hello project. + +Generated by 'django-admin startproject' using Django 1.8.13. + +For more information on this file, see +https://docs.djangoproject.com/en/1.8/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/1.8/ref/settings/ +""" + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +import os + +import dotenv +import dj_database_url +from two1.wallet import Two1Wallet + +# this line is already in your settings.py +BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + +# load environment variables from .env +dotenv_file = os.path.join(BASE_DIR, ".env") +if os.path.isfile(dotenv_file): + dotenv.load_dotenv(dotenv_file) + +# load database from the DATABASE_URL environment variable +DATABASES = {} +DATABASES['default'] = dj_database_url.config(conn_max_age=600) + +TWO1_WALLET_MNEMONIC = os.environ.get("TWO1_WALLET_MNEMONIC") +TWO1_USERNAME = os.environ.get("TWO1_USERNAME") +WALLET = Two1Wallet.import_from_mnemonic(mnemonic=TWO1_WALLET_MNEMONIC) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'g!&#vtozb7t363_5ow+p%rhm53w31rr=abf%c!0f$4#8jb!7us' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = ( + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'django_extensions', + 'hello', + 'two1.bitserv.django', +) + +MIDDLEWARE_CLASSES = ( + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', + 'django.middleware.security.SecurityMiddleware', +) + +ROOT_URLCONF = 'hello.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'hello.wsgi.application' + + +# Internationalization +# https://docs.djangoproject.com/en/1.8/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/1.8/howto/static-files/ + +STATIC_URL = '/static/' diff --git a/hello/urls.py b/hello/urls.py new file mode 100644 index 0000000..8c3d467 --- /dev/null +++ b/hello/urls.py @@ -0,0 +1,23 @@ +"""hello URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/1.8/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') +Including another URLconf + 1. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) +""" +from django.conf.urls import include, url +from django.contrib import admin + +import hello.views + +urlpatterns = [ + url(r'^admin/', include(admin.site.urls)), + url(r'^buy$', hello.views.buy), +] diff --git a/hello/views.py b/hello/views.py new file mode 100644 index 0000000..bdc2811 --- /dev/null +++ b/hello/views.py @@ -0,0 +1,10 @@ +from django.http import HttpResponse + +from rest_framework.decorators import api_view +from two1.bitserv.django import payment + + +@api_view(['GET']) +@payment.required(100) +def buy(request): + return HttpResponse('Hello 21!', status=200) diff --git a/hello/wsgi.py b/hello/wsgi.py new file mode 100644 index 0000000..a419422 --- /dev/null +++ b/hello/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for hello project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hello.settings") + +application = get_wsgi_application() diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..96d6d94 --- /dev/null +++ b/manage.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == "__main__": + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hello.settings") + + from django.core.management import execute_from_command_line + + execute_from_command_line(sys.argv) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0b15f99 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,11 @@ +django~=1.8.0 +django-extensions==1.5.7 +djangorestframework==3.2.3 +dj-database-url==0.4.1 +gunicorn==19.3.0 +python-dotenv==0.1.3 +pyyaml==3.11 +hashids==1.1.0 +psycopg2==2.6.1 +-i https://pypi-3844.21.co/pypi +two1