{"id":19476650,"url":"https://github.com/oklabflensburg/oddfl","last_synced_at":"2026-03-03T11:34:28.110Z","repository":{"id":220034840,"uuid":"750574638","full_name":"oklabflensburg/oddfl","owner":"oklabflensburg","description":"Website für den Open Data Day 2024 in Flensburg basierend auf TailwindCSS und gebaut mit Parcel","archived":false,"fork":false,"pushed_at":"2025-02-06T10:30:56.000Z","size":7100,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-06T11:33:12.549Z","etag":null,"topics":["flensburg","fossgis","geodata","opendata","opendataday","parceljs","responsive","website"],"latest_commit_sha":null,"homepage":"https://opendataday-flensburg.de","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oklabflensburg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2024-01-30T22:31:54.000Z","updated_at":"2025-02-06T10:31:00.000Z","dependencies_parsed_at":"2024-03-01T14:51:53.547Z","dependency_job_id":null,"html_url":"https://github.com/oklabflensburg/oddfl","commit_stats":{"total_commits":32,"total_committers":1,"mean_commits":32.0,"dds":0.0,"last_synced_commit":"c731e239a772f26cb04bff59ff8ffeb2413b8844"},"previous_names":["oklabflensburg/oddfl"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oklabflensburg%2Foddfl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oklabflensburg%2Foddfl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oklabflensburg%2Foddfl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oklabflensburg%2Foddfl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oklabflensburg","download_url":"https://codeload.github.com/oklabflensburg/oddfl/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240701819,"owners_count":19843781,"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":["flensburg","fossgis","geodata","opendata","opendataday","parceljs","responsive","website"],"created_at":"2024-11-10T19:41:18.273Z","updated_at":"2026-03-03T11:34:28.030Z","avatar_url":"https://github.com/oklabflensburg.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Open Data Day 2025\n\n[![Lint css files](https://github.com/oklabflensburg/oddfl/actions/workflows/lint-css.yml/badge.svg)](https://github.com/oklabflensburg/oddfl/actions/workflows/lint-css.yml)\n[![Lint html files](https://github.com/oklabflensburg/oddfl/actions/workflows/lint-html.yml/badge.svg)](https://github.com/oklabflensburg/oddfl/actions/workflows/lint-html.yml)\n[![Lint js files](https://github.com/oklabflensburg/oddfl/actions/workflows/lint-js.yml/badge.svg)](https://github.com/oklabflensburg/oddfl/actions/workflows/lint-js.yml)\n[![Lighthouse CI](https://github.com/oklabflensburg/oddfl/actions/workflows/lighthouse.yml/badge.svg)](https://github.com/oklabflensburg/oddfl/actions/workflows/lighthouse.yml)\n\n\nWebsite für den Open Data Day am 1. März 2025 in Flensburg basierend auf TailwindCSS und gebaut mit Parcel.\n\n![Screenshot Open Data Day Website](https://raw.githubusercontent.com/oklabflensburg/oddfl/main/screenshot_opendataday_flensburg.webp)\n\n\n\n## Prepare Setup\n\nClone repository and install dependencies on your local and remote machine.\n\n```sh\nsudo apt install nginx-full certbot python3 virtualenv\ngit clone https://github.com/oklabflensburg/oddfl.git\ncd oddfl\n```\n\n\n## How to Build\n\nMake sure you have node installed on your machine, then install dependencies.\n\n```\npnpm install\n```\n\n\nWhen you want to build the project run the following command\n\n```\npnpm build\n```\n\n\nWhen you are developing on your local machine run this command\n\n```\npnpm start\n```\n\n\n## Nginx Setup\n\nTo deploy your site, open nginx config on your remote machine and add this lines.\n\n```\nserver {\n    # listen 443 ssl http2;\n    # listen [::]:443 ssl http2;\n    server_name opendataday-flensburg.de;\n\n    charset utf-8;\n\n    add_header Content-Security-Policy \"default-src 'self' ; script-src 'self'; img-src 'self' data: ; style-src 'self' 'unsafe-inline'; font-src 'self'; worker-src 'none'; object-src 'none'\";\n\n    root /opt/git/oddfl/dist;\n    index index.html;\n\n    location ~ /\\. {\n        deny all;\n    }\n\n    location ~* \\.(ico|jpg|jpeg|png|webp|svg|js|css|woff|woff2)$ {\n        expires 1y;\n        add_header Cache-Control \"public, no-transform\";\n    }\n    \n    listen 80;\n}\n```\n\n\n\n## SSL Setup\n\nInstall ssl certificates, make sure to uncomment `http2` section after certbot run.\n\n```sh\nsudo certbot\n```\n\n\n## Nginx Service\n\nTest nginx conig and start and enable nginx service on your system.\n\n```sh\nsudo nginx -t\nsudo systemctl start nginx.service\nsudo systemctl status nginx.service\nsudo systemctl enable nginx.service\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foklabflensburg%2Foddfl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foklabflensburg%2Foddfl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foklabflensburg%2Foddfl/lists"}