{"id":23989634,"url":"https://github.com/spokanetech/spokanetechweb","last_synced_at":"2025-06-10T11:05:59.363Z","repository":{"id":270169950,"uuid":"893634376","full_name":"SpokaneTech/SpokaneTechWeb","owner":"SpokaneTech","description":"source code for spokanetech.org","archived":false,"fork":false,"pushed_at":"2025-04-16T23:01:54.000Z","size":1010,"stargazers_count":6,"open_issues_count":3,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-17T11:56:24.923Z","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":"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":"2024-11-24T23:26:08.000Z","updated_at":"2025-04-16T23:01:58.000Z","dependencies_parsed_at":"2025-01-13T07:24:27.162Z","dependency_job_id":"174e4abf-93a0-4d0a-91a8-36eb466b88b9","html_url":"https://github.com/SpokaneTech/SpokaneTechWeb","commit_stats":null,"previous_names":["spokanetech/spokanetechweb"],"tags_count":0,"template":false,"template_full_name":"djangoaddicts/repo_template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokaneTechWeb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokaneTechWeb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokaneTechWeb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpokaneTech%2FSpokaneTechWeb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpokaneTech","download_url":"https://codeload.github.com/SpokaneTech/SpokaneTechWeb/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251366756,"owners_count":21578182,"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":"2025-01-07T17:34:46.342Z","updated_at":"2025-06-10T11:05:59.334Z","avatar_url":"https://github.com/SpokaneTech.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SpokaneTech.org\nHome of SpokaneTech.org, 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.spokanetech.org\n\nFollow development here:\nhttps://spokanetech.github.io/blog/building-spokane-tech/intro/\n\u003cbr/\u003e\n\n## Code Quality\n| Workflow | Description             | Status                                                                       |\n|----------|-------------------------|------------------------------------------------------------------------------|\n|Bandit|security checks|![Bandit](https://github.com/SpokaneTech/SpokaneTechWeb/actions/workflows/bandit.yaml/badge.svg)|\n|Isort|python import ordering|![Isort](https://github.com/SpokaneTech/SpokaneTechWeb/actions/workflows/isort.yaml/badge.svg)|\n|Mypy|static type checking|![Mypy](https://github.com/SpokaneTech/SpokaneTechWeb/actions/workflows/mypy.yaml/badge.svg)|\n|Radon|code complexity analysis|![Radon](https://github.com/SpokaneTech/SpokaneTechWeb/actions/workflows/radon.yaml/badge.svg)|\n|Ruff Format|code formatting|![Format](https://github.com/SpokaneTech/SpokaneTechWeb/actions/workflows/ruff_format.yaml/badge.svg)|\n|Ruff Lint|static code analysis|![Lint](https://github.com/SpokaneTech/SpokaneTechWeb/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/SpokaneTechWeb.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 SpokaneTechWeb\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. (optional) ingest future events to your local database\n    ```\n    ./manage.py runscript ingest_events\n    ```\n    Note: this requires playwright and its dependencies to be installed on your system. \n    ```playwright install --with-deps```\n\n11. 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%2Fspokanetechweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspokanetech%2Fspokanetechweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspokanetech%2Fspokanetechweb/lists"}