{"id":21324686,"url":"https://github.com/linuxluigi/django_forex_trading_framework","last_synced_at":"2025-07-15T03:35:19.827Z","repository":{"id":102317081,"uuid":"363382967","full_name":"linuxluigi/django_forex_trading_framework","owner":"linuxluigi","description":null,"archived":false,"fork":false,"pushed_at":"2021-05-01T10:31:41.000Z","size":50,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-05T22:37:11.997Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linuxluigi.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-01T10:31:38.000Z","updated_at":"2023-11-05T14:31:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"bf9b4496-496a-455b-88a3-3016fffbbf8b","html_url":"https://github.com/linuxluigi/django_forex_trading_framework","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/linuxluigi/django_forex_trading_framework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fdjango_forex_trading_framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fdjango_forex_trading_framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fdjango_forex_trading_framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fdjango_forex_trading_framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linuxluigi","download_url":"https://codeload.github.com/linuxluigi/django_forex_trading_framework/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxluigi%2Fdjango_forex_trading_framework/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265397845,"owners_count":23758453,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-21T20:35:33.269Z","updated_at":"2025-07-15T03:35:19.779Z","avatar_url":"https://github.com/linuxluigi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Django-Forex-Trading-Framework\n==============================\n\nDjango based Forex trading framework\n\n.. image:: https://img.shields.io/badge/built%20with-Cookiecutter%20Django-ff69b4.svg?logo=cookiecutter\n     :target: https://github.com/pydanny/cookiecutter-django/\n     :alt: Built with Cookiecutter Django\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n     :target: https://github.com/ambv/black\n     :alt: Black code style\n\n:License: MIT\n\nSettings\n--------\n\nMoved to settings_.\n\n.. _settings: http://cookiecutter-django.readthedocs.io/en/latest/settings.html\n\nBasic Commands\n--------------\n\nSetting Up Your Users\n^^^^^^^^^^^^^^^^^^^^^\n\n* To create a **normal user account**, just go to Sign Up and fill out the form. Once you submit it, you'll see a \"Verify Your E-mail Address\" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.\n\n* To create an **superuser account**, use this command::\n\n    $ python manage.py createsuperuser\n\nFor convenience, you can keep your normal user logged in on Chrome and your superuser logged in on Firefox (or similar), so that you can see how the site behaves for both kinds of users.\n\nType checks\n^^^^^^^^^^^\n\nRunning type checks with mypy:\n\n::\n\n  $ mypy django_forex_trading_framework\n\nTest coverage\n^^^^^^^^^^^^^\n\nTo run the tests, check your test coverage, and generate an HTML coverage report::\n\n    $ coverage run -m pytest\n    $ coverage html\n    $ open htmlcov/index.html\n\nRunning tests with py.test\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n  $ pytest\n\nLive reloading and Sass CSS compilation\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nMoved to `Live reloading and SASS compilation`_.\n\n.. _`Live reloading and SASS compilation`: http://cookiecutter-django.readthedocs.io/en/latest/live-reloading-and-sass-compilation.html\n\nCelery\n^^^^^^\n\nThis app comes with Celery.\n\nTo run a celery worker:\n\n.. code-block:: bash\n\n    cd django_forex_trading_framework\n    celery -A config.celery_app worker -l info\n\nPlease note: For Celery's import magic to work, it is important *where* the celery commands are run. If you are in the same folder with *manage.py*, you should be right.\n\nEmail Server\n^^^^^^^^^^^^\n\nIn development, it is often nice to be able to see emails that are being sent from your application. For that reason local SMTP server `MailHog`_ with a web interface is available as docker container.\n\nContainer mailhog will start automatically when you will run all docker containers.\nPlease check `cookiecutter-django Docker documentation`_ for more details how to start all containers.\n\nWith MailHog running, to view messages that are sent by your application, open your browser and go to ``http://127.0.0.1:8025``\n\n.. _mailhog: https://github.com/mailhog/MailHog\n\nSentry\n^^^^^^\n\nSentry is an error logging aggregator service. You can sign up for a free account at  https://sentry.io/signup/?code=cookiecutter  or download and host it yourself.\nThe system is setup with reasonable defaults, including 404 logging and integration with the WSGI application.\n\nYou must set the DSN url in production.\n\nDeployment\n----------\n\nThe following details how to deploy this application.\n\nHeroku\n^^^^^^\n\nSee detailed `cookiecutter-django Heroku documentation`_.\n\n.. _`cookiecutter-django Heroku documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-on-heroku.html\n\nDocker\n^^^^^^\n\nSee detailed `cookiecutter-django Docker documentation`_.\n\n.. _`cookiecutter-django Docker documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-with-docker.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxluigi%2Fdjango_forex_trading_framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinuxluigi%2Fdjango_forex_trading_framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxluigi%2Fdjango_forex_trading_framework/lists"}