{"id":30290555,"url":"https://github.com/spokanetech/spokanepythonweb","last_synced_at":"2025-08-16T23:15:48.611Z","repository":{"id":306851119,"uuid":"1026910146","full_name":"SpokaneTech/SpokanePythonWeb","owner":"SpokaneTech","description":"Website for Spokane Python (SPUG)","archived":false,"fork":false,"pushed_at":"2025-08-06T02:39:30.000Z","size":153,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-06T04:19:02.606Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SpokaneTech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","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,"zenodo":null}},"created_at":"2025-07-26T22:06:40.000Z","updated_at":"2025-08-06T02:39:02.000Z","dependencies_parsed_at":"2025-07-28T03:21:09.707Z","dependency_job_id":null,"html_url":"https://github.com/SpokaneTech/SpokanePythonWeb","commit_stats":null,"previous_names":["spokanetech/spokanepythonweb"],"tags_count":7,"template":false,"template_full_name":"djangoaddicts/repo_template","purl":"pkg:github/SpokaneTech/SpokanePythonWeb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokanePythonWeb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokanePythonWeb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokanePythonWeb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokanePythonWeb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpokaneTech","download_url":"https://codeload.github.com/SpokaneTech/SpokanePythonWeb/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokanePythonWeb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270781394,"owners_count":24643822,"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","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2025-08-16T23:15:44.321Z","updated_at":"2025-08-16T23:15:48.598Z","avatar_url":"https://github.com/SpokaneTech.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SpokanePython.com\nHome of SpokanePython, an online hub for Spokane's tech events and groups. It's not just a website; it's a community-driven, open-source initiative aimed at fostering learning and collaboration among aspiring and seasoned tech enthusiasts.\n\n\nSee the live site here:\nhttps://www.spokanepython.com\n\n\u003cbr/\u003e\n\n## Code Quality\n| Workflow | Description             | Status                                                                       |\n|----------|-------------------------|------------------------------------------------------------------------------|\n|Bandit|security checks|![Bandit](https://github.com/SpokaneTech/SpokanePythonWeb/actions/workflows/bandit.yaml/badge.svg)|\n|Isort|python import ordering|![Isort](https://github.com/SpokaneTech/SpokanePythonWeb/actions/workflows/isort.yaml/badge.svg)|\n|Mypy|static type checking|![Mypy](https://github.com/SpokaneTech/SpokanePythonWeb/actions/workflows/mypy.yaml/badge.svg)|\n|Radon|code complexity analysis|![Radon](https://github.com/SpokaneTech/SpokanePythonWeb/actions/workflows/radon.yaml/badge.svg)|\n|Ruff Format|code formatting|![Format](https://github.com/SpokaneTech/SpokanePythonWeb/actions/workflows/ruff_format.yaml/badge.svg)|\n|Ruff Lint|static code analysis|![Lint](https://github.com/SpokaneTech/SpokanePythonWeb/actions/workflows/ruff_lint.yaml/badge.svg)|\n\n\n\u003cbr/\u003e\n\n## Local Development\n\n### prerequisites\n1. git installed on system\n2. python installed on system (3.10+ recommended)\n\n\n### local git setup\n1. clone the repo:\n\n    ```\n    git clone git@github.com:SpokaneTech/SpokanePythonWeb.git\n    ```\n\n2. git config (optional)\nTo enable pre-commit code quality checks, update the location of git hooks with the following command:\n\n    ```shell\n    git config core.hooksPath .github/hooks\n    ```\n\n    Note: to make a commit with the precommit hooks temporarily disabled, run the following:\n\n    ```\n    git commit --no-verify\n    ```\n\n\u003cbr/\u003e\n\n\n### local environment setup steps\n\n1. cd into the repo directory\n    ```\n    cd SpokanePythonWeb\n    ```\n\n2. create a python virtual environment\n    ```\n    python -m venv venv\n    ```\n\n3. activate the python virtual environment\n    \n    for linux, mac, or wsl:\n    ```\n    source venv/bin/activate\n    ```\n    for powershell:\n\n    ```powershell\n    venv\\Scripts\\activate\n    ```\n\n4. install the python dependencies\n    ```\n    pip install .[dev]\n    ```\n     ** mac users may need to use quotes, such as ```pip install .\"[dev]\"```\n\n5. (optional) create a custom .env file and update contents as applicable\n    ```\n    cp src/envs/.env.template src/envs/.env.local\n    ```\n\n6. cd to the django_project directory\n    ```\n    cd src/django_project\n    ```\n\n7. create a local database by running django migrations\n    ```\n    ./manage.py migrate\n    ```\n\n8. create a local admin user\n    ```\n    ./manage.py add_superuser --group admin\n    ```\n\n9. (optional) add platforms and groups to your local database\n    ```\n    ./manage.py runscript initialize_data\n    ```\n\n10. start the local demo server\n    ```\n    ./manage.py runserver\n    ```\n\nopen a browser and navigate to http://127.0.0.1:8000 (log in with admin/admin)\n\n** you can stop the local demo server anytime via ```ctrl + c ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspokanetech%2Fspokanepythonweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspokanetech%2Fspokanepythonweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspokanetech%2Fspokanepythonweb/lists"}