├── .env.sample ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── _vimrc_local.vim ├── announcements ├── __init__.py ├── admin.py ├── apps.py ├── feeds.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests │ ├── __init__.py │ ├── factories.py │ ├── test_feeds.py │ ├── test_models.py │ └── test_views.py ├── urls.py └── views.py ├── core ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200619_2303.py │ ├── 0003_auto_20200623_0109.py │ ├── 0004_auto_20200624_0204.py │ ├── 0005_initial_categories.py │ ├── 0006_service_organization_name.py │ ├── 0007_orderable_services.py │ └── __init__.py ├── models.py ├── tests │ ├── __init__.py │ ├── factories.py │ ├── test_models.py │ └── test_views.py ├── urls.py └── views.py ├── manage.py ├── project ├── __init__.py ├── asgi.py ├── settings.py ├── testing_settings.py ├── urls.py └── wsgi.py ├── pytest.ini ├── requirements-dev.txt ├── requirements.in ├── requirements.txt ├── runtime.txt ├── setup.cfg ├── static ├── categories │ ├── activities-experiences.png │ ├── basic.png │ ├── education-jobs.png │ ├── health.png │ ├── money-legal.png │ └── shelter.png ├── crisis-211.png ├── crisis.png ├── frederick-county.png ├── icon-512x512.png ├── icon.png ├── logos │ └── line-logo.png ├── manifest.json └── ship-logo.jpg └── templates ├── announcements └── announcement_list.html ├── base.html └── core ├── index.html └── servicecategory_detail.html /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/README.md -------------------------------------------------------------------------------- /_vimrc_local.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/_vimrc_local.vim -------------------------------------------------------------------------------- /announcements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /announcements/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/admin.py -------------------------------------------------------------------------------- /announcements/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/apps.py -------------------------------------------------------------------------------- /announcements/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/feeds.py -------------------------------------------------------------------------------- /announcements/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/migrations/0001_initial.py -------------------------------------------------------------------------------- /announcements/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /announcements/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/models.py -------------------------------------------------------------------------------- /announcements/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /announcements/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/tests/factories.py -------------------------------------------------------------------------------- /announcements/tests/test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/tests/test_feeds.py -------------------------------------------------------------------------------- /announcements/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/tests/test_models.py -------------------------------------------------------------------------------- /announcements/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/tests/test_views.py -------------------------------------------------------------------------------- /announcements/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/urls.py -------------------------------------------------------------------------------- /announcements/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/announcements/views.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/0002_auto_20200619_2303.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/migrations/0002_auto_20200619_2303.py -------------------------------------------------------------------------------- /core/migrations/0003_auto_20200623_0109.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/migrations/0003_auto_20200623_0109.py -------------------------------------------------------------------------------- /core/migrations/0004_auto_20200624_0204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/migrations/0004_auto_20200624_0204.py -------------------------------------------------------------------------------- /core/migrations/0005_initial_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/migrations/0005_initial_categories.py -------------------------------------------------------------------------------- /core/migrations/0006_service_organization_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/migrations/0006_service_organization_name.py -------------------------------------------------------------------------------- /core/migrations/0007_orderable_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/migrations/0007_orderable_services.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/models.py -------------------------------------------------------------------------------- /core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/tests/factories.py -------------------------------------------------------------------------------- /core/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/tests/test_models.py -------------------------------------------------------------------------------- /core/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/tests/test_views.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/core/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/manage.py -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/project/asgi.py -------------------------------------------------------------------------------- /project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/project/settings.py -------------------------------------------------------------------------------- /project/testing_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/project/testing_settings.py -------------------------------------------------------------------------------- /project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/project/urls.py -------------------------------------------------------------------------------- /project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/project/wsgi.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.12 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | ignore = E203, W503 4 | -------------------------------------------------------------------------------- /static/categories/activities-experiences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/categories/activities-experiences.png -------------------------------------------------------------------------------- /static/categories/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/categories/basic.png -------------------------------------------------------------------------------- /static/categories/education-jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/categories/education-jobs.png -------------------------------------------------------------------------------- /static/categories/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/categories/health.png -------------------------------------------------------------------------------- /static/categories/money-legal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/categories/money-legal.png -------------------------------------------------------------------------------- /static/categories/shelter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/categories/shelter.png -------------------------------------------------------------------------------- /static/crisis-211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/crisis-211.png -------------------------------------------------------------------------------- /static/crisis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/crisis.png -------------------------------------------------------------------------------- /static/frederick-county.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/frederick-county.png -------------------------------------------------------------------------------- /static/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/icon-512x512.png -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/logos/line-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/logos/line-logo.png -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/ship-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/static/ship-logo.jpg -------------------------------------------------------------------------------- /templates/announcements/announcement_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/templates/announcements/announcement_list.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/templates/core/index.html -------------------------------------------------------------------------------- /templates/core/servicecategory_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechFrederick/ship/HEAD/templates/core/servicecategory_detail.html --------------------------------------------------------------------------------