Skip to content

Commit

Permalink
Converted project to a reusable django app
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeUrban committed Nov 15, 2019
1 parent 05857d5 commit e5c715f
Show file tree
Hide file tree
Showing 94 changed files with 823 additions and 1,100 deletions.
3 changes: 1 addition & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ omit =
*settings*,
*tests/*,
*urls.py,
src/manage.py
src/app/wsgi.py
polaris/manage.py
1 change: 0 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ DJANGO_SECRET_KEY="secretkeykeysecret"
DJANGO_DEBUG=True
STELLAR_DISTRIBUTION_ACCOUNT_SEED="SCHTHF3N4SHEQM25M43FJ43UTCZP6OO3JKYVJCJBZ4YW6KVVAGC2OUCT"
STELLAR_ISSUER_ACCOUNT_ADDRESS="GCTVATNFP4FYKZ7BXZ3EOPVKEL2DGDCB2AVBDUNLW7NYR7REF5PMKY4V"
REDIS_URL="redis://redis:6379"

# STELLAR_NETWORK_PASSPHRASE can either be "Test SDF Network ; September 2015" or
# "Public Global Stellar Network ; September 2015" or a custom passphrase
Expand Down
10 changes: 1 addition & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ share/python-wheels/
MANIFEST
*.DS_Store
.vscode
.idea

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down Expand Up @@ -92,12 +93,6 @@ ipython_config.py
# install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# celery pid
src/celerybeat.pid

# SageMath parsed files
*.sage.py

Expand Down Expand Up @@ -127,6 +122,3 @@ dmypy.json

# Pyre type checker
.pyre/

# Django static files
src/staticfiles
20 changes: 0 additions & 20 deletions Dockerfile

This file was deleted.

6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include LICENSE
include README.md
include Pipfile
include .env.example
recursive-include polaris/polaris/templates *
recursive-include polaris/polaris/static *
5 changes: 2 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ pytest = "*"
pytest-django = "*"
pytest-cov = "*"
coveralls = "*"
pipenv-setup = "*"

[packages]
django = "==2.2.4"
Expand All @@ -20,9 +21,7 @@ djangorestframework = "*"
gunicorn = "*"
whitenoise = "*"
psycopg2-binary = "*"
stellar-sdk = "==2.0.0b3"
celery = "*"
redis = "*"
stellar-sdk = "==2.0.0b4"
django-cors-headers = "*"
toml = "*"
pyjwt = "*"
Expand Down
Loading

0 comments on commit e5c715f

Please sign in to comment.