├── .github ├── actions │ ├── basic-checks │ │ └── action.yml │ ├── full-checks │ │ └── action.yml │ └── setup-python-env │ │ └── action.yml └── workflows │ ├── _reusable-ci.yml │ ├── ci-forks.yml │ ├── ci.yml │ ├── deploy.yml │ ├── full-ci-comment.yml │ ├── full-ci-manual.yml │ └── publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── README.md ├── Taskfile.yml ├── clerk_api_demo ├── .gitignore ├── Dockerfile ├── assets │ └── favicon.ico ├── clerk_api_demo │ ├── __init__.py │ └── clerk_api_demo.py ├── requirements.txt └── rxconfig.py ├── custom_components └── reflex_clerk_api │ ├── __init__.py │ ├── authentication_components.py │ ├── base.py │ ├── clerk_provider.py │ ├── control_components.py │ ├── models.py │ ├── organization_components.py │ ├── pages.py │ ├── unstyled_components.py │ └── user_components.py ├── docs ├── about.md ├── features.md ├── full_docs │ ├── authentication_components.md │ ├── clerk_provider.md │ ├── control_components.md │ ├── pages.md │ ├── unstyled_components.md │ └── user_components.md ├── getting_started.md └── migrating.md ├── mkdocs.yml ├── pyproject.toml ├── tests ├── __init__.py └── test_demo.py └── uv.lock /.github/actions/basic-checks/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/actions/basic-checks/action.yml -------------------------------------------------------------------------------- /.github/actions/full-checks/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/actions/full-checks/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-python-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/actions/setup-python-env/action.yml -------------------------------------------------------------------------------- /.github/workflows/_reusable-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/workflows/_reusable-ci.yml -------------------------------------------------------------------------------- /.github/workflows/ci-forks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/workflows/ci-forks.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/full-ci-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/workflows/full-ci-comment.yml -------------------------------------------------------------------------------- /.github/workflows/full-ci-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/workflows/full-ci-manual.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /clerk_api_demo/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | .states 4 | *.db 5 | .web 6 | assets/external/ 7 | -------------------------------------------------------------------------------- /clerk_api_demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/clerk_api_demo/Dockerfile -------------------------------------------------------------------------------- /clerk_api_demo/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/clerk_api_demo/assets/favicon.ico -------------------------------------------------------------------------------- /clerk_api_demo/clerk_api_demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clerk_api_demo/clerk_api_demo/clerk_api_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/clerk_api_demo/clerk_api_demo/clerk_api_demo.py -------------------------------------------------------------------------------- /clerk_api_demo/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/clerk_api_demo/requirements.txt -------------------------------------------------------------------------------- /clerk_api_demo/rxconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/clerk_api_demo/rxconfig.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/__init__.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/authentication_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/authentication_components.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/base.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/clerk_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/clerk_provider.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/control_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/control_components.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/models.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/organization_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/organization_components.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/pages.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/unstyled_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/unstyled_components.py -------------------------------------------------------------------------------- /custom_components/reflex_clerk_api/user_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/custom_components/reflex_clerk_api/user_components.py -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/full_docs/authentication_components.md: -------------------------------------------------------------------------------- 1 | ::: reflex_clerk_api.authentication_components 2 | -------------------------------------------------------------------------------- /docs/full_docs/clerk_provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/docs/full_docs/clerk_provider.md -------------------------------------------------------------------------------- /docs/full_docs/control_components.md: -------------------------------------------------------------------------------- 1 | ::: reflex_clerk_api.control_components 2 | -------------------------------------------------------------------------------- /docs/full_docs/pages.md: -------------------------------------------------------------------------------- 1 | ::: reflex_clerk_api.pages 2 | -------------------------------------------------------------------------------- /docs/full_docs/unstyled_components.md: -------------------------------------------------------------------------------- 1 | ::: reflex_clerk_api.unstyled_components 2 | -------------------------------------------------------------------------------- /docs/full_docs/user_components.md: -------------------------------------------------------------------------------- 1 | ::: reflex_clerk_api.user_components 2 | -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/docs/migrating.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/tests/test_demo.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimChild/reflex-clerk-api/HEAD/uv.lock --------------------------------------------------------------------------------