├── .dockerignore ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── apps ├── __init__.py ├── blog │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_post_featured.py │ │ ├── 0003_heading.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── cart │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_cartitem_coupon.py │ │ ├── 0003_cartitem_course.py │ │ ├── 0004_cart_user.py │ │ ├── 0005_cartitem_tier.py │ │ ├── 0006_auto_20230608_1428.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── category │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_category_thumbnail.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── contacts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_remove_contact_subject.py │ │ ├── 0003_contact_phone.py │ │ ├── 0004_remove_contact_website.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── coupons │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_initial.py │ │ ├── 0003_coupon_user.py │ │ ├── 0004_auto_20230608_1423.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── courses │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── helpers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_initial.py │ │ ├── 0003_auto_20230607_0906.py │ │ ├── 0004_remove_comment_title.py │ │ ├── 0005_comment_episode.py │ │ ├── 0006_auto_20230607_1248.py │ │ ├── 0007_question_answers.py │ │ ├── 0008_alter_episode_content.py │ │ ├── 0009_alter_episode_content.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utils │ │ └── randomint.py │ ├── validators.py │ └── views.py ├── newsletter │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── orders │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── payments │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── reviews │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── tiers │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_tier_user.py │ │ ├── 0003_auto_20230608_1100.py │ │ ├── 0004_tier_transaction_amount_proportional.py │ │ ├── 0005_auto_20230608_1107.py │ │ ├── 0006_alter_tier_transaction_amount_proportional.py │ │ ├── 0007_auto_20230608_1223.py │ │ ├── 0008_rename_features_feature.py │ │ ├── 0009_alter_tier_payment_methods_allowed.py │ │ ├── 0010_auto_20230608_1253.py │ │ ├── 0011_tier_thumbnail.py │ │ ├── 0012_auto_20230609_1200.py │ │ ├── 0013_auto_20230609_1416.py │ │ ├── 0014_alter_subscription_vendor.py │ │ ├── 0015_alter_subscription_vendor.py │ │ ├── 0016_subscription_index.py │ │ ├── 0017_auto_20230610_1211.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── user │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20230608_0344.py │ │ ├── 0003_useraccount_banner.py │ │ ├── 0004_alter_useraccount_banner.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── user_contacts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── user_friends │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── user_profile │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── user_wallet │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── contracts ├── marketplace │ ├── affiliates.sol │ │ ├── Affiliates.dbg.json │ │ └── Affiliates.json │ ├── auctions.sol │ │ ├── Auctions.dbg.json │ │ └── Auctions.json │ ├── badges.sol │ │ ├── BadgeSystem.dbg.json │ │ └── BadgeSystem.json │ ├── booth.sol │ │ ├── Booth.dbg.json │ │ └── Booth.json │ ├── ticket.sol │ │ ├── Ticket.dbg.json │ │ └── Ticket.json │ └── tiers.sol │ │ ├── Tiers.dbg.json │ │ └── Tiers.json └── protocol │ ├── collateral │ └── clip.sol │ │ ├── AbacusLike.dbg.json │ │ ├── AbacusLike.json │ │ ├── Clipper.dbg.json │ │ ├── Clipper.json │ │ ├── ClipperCallee.dbg.json │ │ ├── ClipperCallee.json │ │ ├── DogLike.dbg.json │ │ ├── DogLike.json │ │ ├── PipLike.dbg.json │ │ ├── PipLike.json │ │ ├── SpotterLike.dbg.json │ │ ├── SpotterLike.json │ │ ├── VatLike.dbg.json │ │ └── VatLike.json │ ├── core │ ├── spot.sol │ │ ├── PipLike.dbg.json │ │ ├── PipLike.json │ │ ├── Spotter.dbg.json │ │ ├── Spotter.json │ │ ├── VatLike.dbg.json │ │ └── VatLike.json │ └── vat.sol │ │ ├── Vat.dbg.json │ │ └── Vat.json │ ├── galerium │ ├── galerium.sol │ │ ├── Galerium.dbg.json │ │ └── Galerium.json │ ├── join.sol │ │ ├── DSTokenLike.dbg.json │ │ ├── DSTokenLike.json │ │ ├── ETHJoin.dbg.json │ │ ├── ETHJoin.json │ │ ├── GALRJoin.dbg.json │ │ ├── GALRJoin.json │ │ ├── GemJoin.dbg.json │ │ ├── GemJoin.json │ │ ├── GemLike.dbg.json │ │ ├── GemLike.json │ │ ├── VatLike.dbg.json │ │ └── VatLike.json │ └── lib.sol │ │ ├── DSNote.dbg.json │ │ └── DSNote.json │ ├── liquidation │ ├── abaci.sol │ │ ├── Abacus.dbg.json │ │ ├── Abacus.json │ │ ├── ExponentialDecrease.dbg.json │ │ ├── ExponentialDecrease.json │ │ ├── LinearDecrease.dbg.json │ │ ├── LinearDecrease.json │ │ ├── StairstepExponentialDecrease.dbg.json │ │ └── StairstepExponentialDecrease.json │ └── dog.sol │ │ ├── ClipperLike.dbg.json │ │ ├── ClipperLike.json │ │ ├── Dog.dbg.json │ │ ├── Dog.json │ │ ├── VatLike.dbg.json │ │ ├── VatLike.json │ │ ├── VowLike.dbg.json │ │ └── VowLike.json │ ├── oracle │ ├── oracle.sol │ │ ├── Oracle.dbg.json │ │ └── Oracle.json │ └── proxy.sol │ │ ├── Proxy.dbg.json │ │ └── Proxy.json │ ├── praedium │ ├── ico.sol │ │ ├── ICO.dbg.json │ │ └── ICO.json │ ├── mct.sol │ │ ├── MCT.dbg.json │ │ └── MCT.json │ └── token.sol │ │ ├── Token.dbg.json │ │ └── Token.json │ └── stabilizer │ ├── flap.sol │ ├── Flapper.dbg.json │ ├── Flapper.json │ ├── GemLike.dbg.json │ ├── GemLike.json │ ├── VatLike.dbg.json │ └── VatLike.json │ ├── flop.sol │ ├── Flopper.dbg.json │ ├── Flopper.json │ ├── GemLike.dbg.json │ ├── GemLike.json │ ├── VatLike.dbg.json │ ├── VatLike.json │ ├── VowLike.dbg.json │ └── VowLike.json │ └── vow.sol │ ├── FlapLike.dbg.json │ ├── FlapLike.json │ ├── FlopLike.dbg.json │ ├── FlopLike.json │ ├── VatLike.dbg.json │ ├── VatLike.json │ ├── Vow.dbg.json │ └── Vow.json ├── core ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yaml ├── manage.py ├── private_key.json ├── public_key.json ├── requirements.txt └── templates └── email ├── activation.html ├── confirmation.html ├── contact.html ├── newsletter └── welcome.html ├── password_changed_confirmation.html ├── password_reset.html ├── username_changed_confirmation.html └── username_reset.html /.dockerignore: -------------------------------------------------------------------------------- 1 | env 2 | venv 3 | node_modules -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Backend for SoloPython Academy 2 | -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/admin.py -------------------------------------------------------------------------------- /apps/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/apps.py -------------------------------------------------------------------------------- /apps/blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/blog/migrations/0002_post_featured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/migrations/0002_post_featured.py -------------------------------------------------------------------------------- /apps/blog/migrations/0003_heading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/migrations/0003_heading.py -------------------------------------------------------------------------------- /apps/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/models.py -------------------------------------------------------------------------------- /apps/blog/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/serializers.py -------------------------------------------------------------------------------- /apps/blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/tests.py -------------------------------------------------------------------------------- /apps/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/urls.py -------------------------------------------------------------------------------- /apps/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/blog/views.py -------------------------------------------------------------------------------- /apps/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cart/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/admin.py -------------------------------------------------------------------------------- /apps/cart/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/apps.py -------------------------------------------------------------------------------- /apps/cart/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/cart/migrations/0002_cartitem_coupon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/migrations/0002_cartitem_coupon.py -------------------------------------------------------------------------------- /apps/cart/migrations/0003_cartitem_course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/migrations/0003_cartitem_course.py -------------------------------------------------------------------------------- /apps/cart/migrations/0004_cart_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/migrations/0004_cart_user.py -------------------------------------------------------------------------------- /apps/cart/migrations/0005_cartitem_tier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/migrations/0005_cartitem_tier.py -------------------------------------------------------------------------------- /apps/cart/migrations/0006_auto_20230608_1428.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/migrations/0006_auto_20230608_1428.py -------------------------------------------------------------------------------- /apps/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cart/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/models.py -------------------------------------------------------------------------------- /apps/cart/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/serializers.py -------------------------------------------------------------------------------- /apps/cart/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/tests.py -------------------------------------------------------------------------------- /apps/cart/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/urls.py -------------------------------------------------------------------------------- /apps/cart/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/cart/views.py -------------------------------------------------------------------------------- /apps/category/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/category/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/admin.py -------------------------------------------------------------------------------- /apps/category/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/apps.py -------------------------------------------------------------------------------- /apps/category/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/category/migrations/0002_category_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/migrations/0002_category_thumbnail.py -------------------------------------------------------------------------------- /apps/category/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/category/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/models.py -------------------------------------------------------------------------------- /apps/category/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/serializers.py -------------------------------------------------------------------------------- /apps/category/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/tests.py -------------------------------------------------------------------------------- /apps/category/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/urls.py -------------------------------------------------------------------------------- /apps/category/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/category/views.py -------------------------------------------------------------------------------- /apps/contacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/contacts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/admin.py -------------------------------------------------------------------------------- /apps/contacts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/apps.py -------------------------------------------------------------------------------- /apps/contacts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/contacts/migrations/0002_remove_contact_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/migrations/0002_remove_contact_subject.py -------------------------------------------------------------------------------- /apps/contacts/migrations/0003_contact_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/migrations/0003_contact_phone.py -------------------------------------------------------------------------------- /apps/contacts/migrations/0004_remove_contact_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/migrations/0004_remove_contact_website.py -------------------------------------------------------------------------------- /apps/contacts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/contacts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/models.py -------------------------------------------------------------------------------- /apps/contacts/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/serializers.py -------------------------------------------------------------------------------- /apps/contacts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/tests.py -------------------------------------------------------------------------------- /apps/contacts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/urls.py -------------------------------------------------------------------------------- /apps/contacts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/contacts/views.py -------------------------------------------------------------------------------- /apps/coupons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/coupons/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/admin.py -------------------------------------------------------------------------------- /apps/coupons/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/apps.py -------------------------------------------------------------------------------- /apps/coupons/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/coupons/migrations/0002_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/migrations/0002_initial.py -------------------------------------------------------------------------------- /apps/coupons/migrations/0003_coupon_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/migrations/0003_coupon_user.py -------------------------------------------------------------------------------- /apps/coupons/migrations/0004_auto_20230608_1423.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/migrations/0004_auto_20230608_1423.py -------------------------------------------------------------------------------- /apps/coupons/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/coupons/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/models.py -------------------------------------------------------------------------------- /apps/coupons/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/serializers.py -------------------------------------------------------------------------------- /apps/coupons/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/tests.py -------------------------------------------------------------------------------- /apps/coupons/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/urls.py -------------------------------------------------------------------------------- /apps/coupons/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/coupons/views.py -------------------------------------------------------------------------------- /apps/courses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/courses/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/admin.py -------------------------------------------------------------------------------- /apps/courses/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/apps.py -------------------------------------------------------------------------------- /apps/courses/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/helpers.py -------------------------------------------------------------------------------- /apps/courses/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/courses/migrations/0002_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0002_initial.py -------------------------------------------------------------------------------- /apps/courses/migrations/0003_auto_20230607_0906.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0003_auto_20230607_0906.py -------------------------------------------------------------------------------- /apps/courses/migrations/0004_remove_comment_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0004_remove_comment_title.py -------------------------------------------------------------------------------- /apps/courses/migrations/0005_comment_episode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0005_comment_episode.py -------------------------------------------------------------------------------- /apps/courses/migrations/0006_auto_20230607_1248.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0006_auto_20230607_1248.py -------------------------------------------------------------------------------- /apps/courses/migrations/0007_question_answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0007_question_answers.py -------------------------------------------------------------------------------- /apps/courses/migrations/0008_alter_episode_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0008_alter_episode_content.py -------------------------------------------------------------------------------- /apps/courses/migrations/0009_alter_episode_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/migrations/0009_alter_episode_content.py -------------------------------------------------------------------------------- /apps/courses/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/courses/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/models.py -------------------------------------------------------------------------------- /apps/courses/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/permissions.py -------------------------------------------------------------------------------- /apps/courses/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/serializers.py -------------------------------------------------------------------------------- /apps/courses/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/tests.py -------------------------------------------------------------------------------- /apps/courses/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/urls.py -------------------------------------------------------------------------------- /apps/courses/utils/randomint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/utils/randomint.py -------------------------------------------------------------------------------- /apps/courses/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/validators.py -------------------------------------------------------------------------------- /apps/courses/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/courses/views.py -------------------------------------------------------------------------------- /apps/newsletter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/newsletter/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/newsletter/admin.py -------------------------------------------------------------------------------- /apps/newsletter/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/newsletter/apps.py -------------------------------------------------------------------------------- /apps/newsletter/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/newsletter/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/newsletter/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/newsletter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/newsletter/models.py -------------------------------------------------------------------------------- /apps/newsletter/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/newsletter/serializers.py -------------------------------------------------------------------------------- /apps/newsletter/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/newsletter/tests.py -------------------------------------------------------------------------------- /apps/newsletter/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/newsletter/urls.py -------------------------------------------------------------------------------- /apps/newsletter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/newsletter/views.py -------------------------------------------------------------------------------- /apps/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/orders/admin.py -------------------------------------------------------------------------------- /apps/orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/orders/apps.py -------------------------------------------------------------------------------- /apps/orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/orders/models.py -------------------------------------------------------------------------------- /apps/orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/orders/tests.py -------------------------------------------------------------------------------- /apps/orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/orders/urls.py -------------------------------------------------------------------------------- /apps/orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/orders/views.py -------------------------------------------------------------------------------- /apps/payments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/payments/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/payments/admin.py -------------------------------------------------------------------------------- /apps/payments/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/payments/apps.py -------------------------------------------------------------------------------- /apps/payments/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/payments/models.py -------------------------------------------------------------------------------- /apps/payments/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/payments/tests.py -------------------------------------------------------------------------------- /apps/payments/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/payments/urls.py -------------------------------------------------------------------------------- /apps/payments/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/payments/views.py -------------------------------------------------------------------------------- /apps/reviews/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/reviews/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/reviews/admin.py -------------------------------------------------------------------------------- /apps/reviews/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/reviews/apps.py -------------------------------------------------------------------------------- /apps/reviews/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/reviews/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/reviews/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/reviews/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/reviews/models.py -------------------------------------------------------------------------------- /apps/reviews/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/reviews/serializers.py -------------------------------------------------------------------------------- /apps/reviews/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/reviews/tests.py -------------------------------------------------------------------------------- /apps/reviews/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/reviews/urls.py -------------------------------------------------------------------------------- /apps/reviews/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/reviews/views.py -------------------------------------------------------------------------------- /apps/tiers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tiers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/admin.py -------------------------------------------------------------------------------- /apps/tiers/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/apps.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0002_tier_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0002_tier_user.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0003_auto_20230608_1100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0003_auto_20230608_1100.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0004_tier_transaction_amount_proportional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0004_tier_transaction_amount_proportional.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0005_auto_20230608_1107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0005_auto_20230608_1107.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0006_alter_tier_transaction_amount_proportional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0006_alter_tier_transaction_amount_proportional.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0007_auto_20230608_1223.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0007_auto_20230608_1223.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0008_rename_features_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0008_rename_features_feature.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0009_alter_tier_payment_methods_allowed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0009_alter_tier_payment_methods_allowed.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0010_auto_20230608_1253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0010_auto_20230608_1253.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0011_tier_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0011_tier_thumbnail.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0012_auto_20230609_1200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0012_auto_20230609_1200.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0013_auto_20230609_1416.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0013_auto_20230609_1416.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0014_alter_subscription_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0014_alter_subscription_vendor.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0015_alter_subscription_vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0015_alter_subscription_vendor.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0016_subscription_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0016_subscription_index.py -------------------------------------------------------------------------------- /apps/tiers/migrations/0017_auto_20230610_1211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/migrations/0017_auto_20230610_1211.py -------------------------------------------------------------------------------- /apps/tiers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tiers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/models.py -------------------------------------------------------------------------------- /apps/tiers/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/serializers.py -------------------------------------------------------------------------------- /apps/tiers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/tests.py -------------------------------------------------------------------------------- /apps/tiers/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/urls.py -------------------------------------------------------------------------------- /apps/tiers/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/tiers/views.py -------------------------------------------------------------------------------- /apps/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/admin.py -------------------------------------------------------------------------------- /apps/user/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/apps.py -------------------------------------------------------------------------------- /apps/user/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/user/migrations/0002_auto_20230608_0344.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/migrations/0002_auto_20230608_0344.py -------------------------------------------------------------------------------- /apps/user/migrations/0003_useraccount_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/migrations/0003_useraccount_banner.py -------------------------------------------------------------------------------- /apps/user/migrations/0004_alter_useraccount_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/migrations/0004_alter_useraccount_banner.py -------------------------------------------------------------------------------- /apps/user/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/models.py -------------------------------------------------------------------------------- /apps/user/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/serializers.py -------------------------------------------------------------------------------- /apps/user/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user/tests.py -------------------------------------------------------------------------------- /apps/user/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_contacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_contacts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_contacts/admin.py -------------------------------------------------------------------------------- /apps/user_contacts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_contacts/apps.py -------------------------------------------------------------------------------- /apps/user_contacts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_contacts/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/user_contacts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_contacts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_contacts/models.py -------------------------------------------------------------------------------- /apps/user_contacts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_contacts/tests.py -------------------------------------------------------------------------------- /apps/user_contacts/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/user_friends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_friends/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_friends/admin.py -------------------------------------------------------------------------------- /apps/user_friends/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_friends/apps.py -------------------------------------------------------------------------------- /apps/user_friends/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_friends/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/user_friends/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_friends/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_friends/models.py -------------------------------------------------------------------------------- /apps/user_friends/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_friends/tests.py -------------------------------------------------------------------------------- /apps/user_friends/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/user_profile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_profile/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_profile/admin.py -------------------------------------------------------------------------------- /apps/user_profile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_profile/apps.py -------------------------------------------------------------------------------- /apps/user_profile/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_profile/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/user_profile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_profile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_profile/models.py -------------------------------------------------------------------------------- /apps/user_profile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_profile/tests.py -------------------------------------------------------------------------------- /apps/user_profile/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/user_wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_wallet/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_wallet/admin.py -------------------------------------------------------------------------------- /apps/user_wallet/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_wallet/apps.py -------------------------------------------------------------------------------- /apps/user_wallet/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_wallet/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/user_wallet/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_wallet/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_wallet/models.py -------------------------------------------------------------------------------- /apps/user_wallet/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_wallet/serializers.py -------------------------------------------------------------------------------- /apps/user_wallet/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_wallet/tests.py -------------------------------------------------------------------------------- /apps/user_wallet/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_wallet/urls.py -------------------------------------------------------------------------------- /apps/user_wallet/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/apps/user_wallet/views.py -------------------------------------------------------------------------------- /contracts/marketplace/affiliates.sol/Affiliates.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/affiliates.sol/Affiliates.dbg.json -------------------------------------------------------------------------------- /contracts/marketplace/affiliates.sol/Affiliates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/affiliates.sol/Affiliates.json -------------------------------------------------------------------------------- /contracts/marketplace/auctions.sol/Auctions.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/auctions.sol/Auctions.dbg.json -------------------------------------------------------------------------------- /contracts/marketplace/auctions.sol/Auctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/auctions.sol/Auctions.json -------------------------------------------------------------------------------- /contracts/marketplace/badges.sol/BadgeSystem.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/badges.sol/BadgeSystem.dbg.json -------------------------------------------------------------------------------- /contracts/marketplace/badges.sol/BadgeSystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/badges.sol/BadgeSystem.json -------------------------------------------------------------------------------- /contracts/marketplace/booth.sol/Booth.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/booth.sol/Booth.dbg.json -------------------------------------------------------------------------------- /contracts/marketplace/booth.sol/Booth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/booth.sol/Booth.json -------------------------------------------------------------------------------- /contracts/marketplace/ticket.sol/Ticket.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/ticket.sol/Ticket.dbg.json -------------------------------------------------------------------------------- /contracts/marketplace/ticket.sol/Ticket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/ticket.sol/Ticket.json -------------------------------------------------------------------------------- /contracts/marketplace/tiers.sol/Tiers.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/tiers.sol/Tiers.dbg.json -------------------------------------------------------------------------------- /contracts/marketplace/tiers.sol/Tiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/marketplace/tiers.sol/Tiers.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/AbacusLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/AbacusLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/AbacusLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/AbacusLike.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/Clipper.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/Clipper.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/Clipper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/Clipper.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/ClipperCallee.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/ClipperCallee.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/ClipperCallee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/ClipperCallee.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/DogLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/DogLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/DogLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/DogLike.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/PipLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/PipLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/PipLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/PipLike.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/SpotterLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/SpotterLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/SpotterLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/SpotterLike.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/VatLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/VatLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/collateral/clip.sol/VatLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/collateral/clip.sol/VatLike.json -------------------------------------------------------------------------------- /contracts/protocol/core/spot.sol/PipLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/core/spot.sol/PipLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/core/spot.sol/PipLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/core/spot.sol/PipLike.json -------------------------------------------------------------------------------- /contracts/protocol/core/spot.sol/Spotter.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/core/spot.sol/Spotter.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/core/spot.sol/Spotter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/core/spot.sol/Spotter.json -------------------------------------------------------------------------------- /contracts/protocol/core/spot.sol/VatLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/core/spot.sol/VatLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/core/spot.sol/VatLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/core/spot.sol/VatLike.json -------------------------------------------------------------------------------- /contracts/protocol/core/vat.sol/Vat.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/core/vat.sol/Vat.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/core/vat.sol/Vat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/core/vat.sol/Vat.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/galerium.sol/Galerium.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/galerium.sol/Galerium.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/galerium.sol/Galerium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/galerium.sol/Galerium.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/DSTokenLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/DSTokenLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/DSTokenLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/DSTokenLike.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/ETHJoin.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/ETHJoin.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/ETHJoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/ETHJoin.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/GALRJoin.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/GALRJoin.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/GALRJoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/GALRJoin.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/GemJoin.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/GemJoin.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/GemJoin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/GemJoin.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/GemLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/GemLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/GemLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/GemLike.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/VatLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/VatLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/join.sol/VatLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/join.sol/VatLike.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/lib.sol/DSNote.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/lib.sol/DSNote.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/galerium/lib.sol/DSNote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/galerium/lib.sol/DSNote.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/abaci.sol/Abacus.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/abaci.sol/Abacus.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/abaci.sol/Abacus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/abaci.sol/Abacus.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/abaci.sol/ExponentialDecrease.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/abaci.sol/ExponentialDecrease.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/abaci.sol/ExponentialDecrease.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/abaci.sol/ExponentialDecrease.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/abaci.sol/LinearDecrease.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/abaci.sol/LinearDecrease.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/abaci.sol/LinearDecrease.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/abaci.sol/LinearDecrease.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/abaci.sol/StairstepExponentialDecrease.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/abaci.sol/StairstepExponentialDecrease.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/abaci.sol/StairstepExponentialDecrease.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/abaci.sol/StairstepExponentialDecrease.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/dog.sol/ClipperLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/dog.sol/ClipperLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/dog.sol/ClipperLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/dog.sol/ClipperLike.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/dog.sol/Dog.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/dog.sol/Dog.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/dog.sol/Dog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/dog.sol/Dog.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/dog.sol/VatLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/dog.sol/VatLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/dog.sol/VatLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/dog.sol/VatLike.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/dog.sol/VowLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/dog.sol/VowLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/liquidation/dog.sol/VowLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/liquidation/dog.sol/VowLike.json -------------------------------------------------------------------------------- /contracts/protocol/oracle/oracle.sol/Oracle.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/oracle/oracle.sol/Oracle.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/oracle/oracle.sol/Oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/oracle/oracle.sol/Oracle.json -------------------------------------------------------------------------------- /contracts/protocol/oracle/proxy.sol/Proxy.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/oracle/proxy.sol/Proxy.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/oracle/proxy.sol/Proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/oracle/proxy.sol/Proxy.json -------------------------------------------------------------------------------- /contracts/protocol/praedium/ico.sol/ICO.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/praedium/ico.sol/ICO.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/praedium/ico.sol/ICO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/praedium/ico.sol/ICO.json -------------------------------------------------------------------------------- /contracts/protocol/praedium/mct.sol/MCT.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/praedium/mct.sol/MCT.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/praedium/mct.sol/MCT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/praedium/mct.sol/MCT.json -------------------------------------------------------------------------------- /contracts/protocol/praedium/token.sol/Token.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/praedium/token.sol/Token.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/praedium/token.sol/Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/praedium/token.sol/Token.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flap.sol/Flapper.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flap.sol/Flapper.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flap.sol/Flapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flap.sol/Flapper.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flap.sol/GemLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flap.sol/GemLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flap.sol/GemLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flap.sol/GemLike.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flap.sol/VatLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flap.sol/VatLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flap.sol/VatLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flap.sol/VatLike.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flop.sol/Flopper.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flop.sol/Flopper.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flop.sol/Flopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flop.sol/Flopper.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flop.sol/GemLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flop.sol/GemLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flop.sol/GemLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flop.sol/GemLike.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flop.sol/VatLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flop.sol/VatLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flop.sol/VatLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flop.sol/VatLike.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flop.sol/VowLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flop.sol/VowLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/flop.sol/VowLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/flop.sol/VowLike.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/vow.sol/FlapLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/vow.sol/FlapLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/vow.sol/FlapLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/vow.sol/FlapLike.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/vow.sol/FlopLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/vow.sol/FlopLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/vow.sol/FlopLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/vow.sol/FlopLike.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/vow.sol/VatLike.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/vow.sol/VatLike.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/vow.sol/VatLike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/vow.sol/VatLike.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/vow.sol/Vow.dbg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/vow.sol/Vow.dbg.json -------------------------------------------------------------------------------- /contracts/protocol/stabilizer/vow.sol/Vow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/contracts/protocol/stabilizer/vow.sol/Vow.json -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/manage.py -------------------------------------------------------------------------------- /private_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/private_key.json -------------------------------------------------------------------------------- /public_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/public_key.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/email/activation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/templates/email/activation.html -------------------------------------------------------------------------------- /templates/email/confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/templates/email/confirmation.html -------------------------------------------------------------------------------- /templates/email/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/templates/email/contact.html -------------------------------------------------------------------------------- /templates/email/newsletter/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/templates/email/newsletter/welcome.html -------------------------------------------------------------------------------- /templates/email/password_changed_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/templates/email/password_changed_confirmation.html -------------------------------------------------------------------------------- /templates/email/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/templates/email/password_reset.html -------------------------------------------------------------------------------- /templates/email/username_changed_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/templates/email/username_changed_confirmation.html -------------------------------------------------------------------------------- /templates/email/username_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apholdings/solopython_backend/HEAD/templates/email/username_reset.html --------------------------------------------------------------------------------