{"id":29975224,"url":"https://github.com/webcrawls/borderlinefever.neocities.org","last_synced_at":"2025-08-04T07:14:47.594Z","repository":{"id":220915622,"uuid":"752330019","full_name":"webcrawls/borderlinefever.neocities.org","owner":"webcrawls","description":"🌐 the website for PATTERN, a Sherdian College short film","archived":false,"fork":false,"pushed_at":"2024-10-30T19:39:26.000Z","size":59403,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-01T18:23:36.500Z","etag":null,"topics":["art","web"],"latest_commit_sha":null,"homepage":"https://borderlinefever.neocities.org","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/webcrawls.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-02-03T16:46:02.000Z","updated_at":"2024-10-30T19:39:29.000Z","dependencies_parsed_at":"2024-10-16T19:06:14.154Z","dependency_job_id":"85de9cbf-0421-44b3-a1ba-08e8178c5c34","html_url":"https://github.com/webcrawls/borderlinefever.neocities.org","commit_stats":null,"previous_names":["webcrawls/pattern","webcrawls/interference-pattern"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/webcrawls/borderlinefever.neocities.org","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webcrawls%2Fborderlinefever.neocities.org","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webcrawls%2Fborderlinefever.neocities.org/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webcrawls%2Fborderlinefever.neocities.org/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webcrawls%2Fborderlinefever.neocities.org/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webcrawls","download_url":"https://codeload.github.com/webcrawls/borderlinefever.neocities.org/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webcrawls%2Fborderlinefever.neocities.org/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268660476,"owners_count":24286034,"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-04T02:00:09.867Z","response_time":79,"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":["art","web"],"created_at":"2025-08-04T07:14:44.009Z","updated_at":"2025-08-04T07:14:47.577Z","avatar_url":"https://github.com/webcrawls.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# borderlinefever.neocities.org\n\nA website initially designed for the Interference Pattern music video, a project between Borderline Fever and Sheridan\ncollege.\n\n\u003e [Visit the website here](https://borderlinefever.neocities.org)!\n\n![the Interference Pattern logo](/static/logo/logo-colour.png)\n![the Sheridan logo](/static/logo/sheridan-logo.png)\n\n- [Setup and Local Development](#step-and-local-development)\n  - [Install Dependencies](#)\n  - [Clone Repository](#)\n  - [Run and Build](#)\n- [Technical Details](#)\n  - [Landmarks](#)\n\n## Setup and Local Development\n\n_These instructions are generally written for Windows computers. If you are on Linux or macOS, the instructions are\ndifferent, but you should know what you're doing in that case =) [contact webcrawls for help if you need it]_\n\n### Dependencies\n\n- Make sure you have a copy of [node.js](https://nodejs.org/en/download/current) downloaded and installed.\n- Download Git ([Download for Windows](https://git-scm.com/downloads))\n    - if you're running this installer, it'll ask you a lot of questions. you should be OK to leave everything default -\n      don't touch stuff unless you know what you're doing =)\n    - when the installation is finished, you should have a new program called '**Git Bash**'\n\n### Clone the Repository\n\n1. Open your file explorer and find/create a folder you want the website code to live within.\n2. Enter that folder, hold CTRL+Shift and right-click on an empty part of the folder. You should see the option 'Open\n   Git\n   Bash Here'.\n3. Next, run `git clone https://github.com/webcrawls/PATTERN`. You can either type this out manually, or copy from this\n   page, and right-click in the Git Bash window and select \"Paste\".\n4. This command will download the code. You should see a new folder called 'PATTERN'. Success!\n\n### Run the website locally\n\n1. Make sure you have the latest version by running `git pull`. If you _just_ ran `git clone`, then you shouldn't need\n   to do this.\n2. Open a Git Bash instance inside this folder, by navigating your file explorer to the PATTERN folder and pressing\n   ctrl+shift+right-click on an empty part of the window.\n3. Type `npm install` inside Git Bash and press enter. This will download all necessary dependencies to run the website.\n4. After `npm install` finishes, run `npm dev` to run a local version of the website. Once this command is ran, it\n   should show a URL such as `http://localhost:5173`. Navigating to this URL in the browser will bring you to the\n   website.\n\n### Build a production-ready version of the website\n\n_If you are looking to build the full HTML-version of the website, follow these instructions._\n\n1. Ensure you have the latest version by running `git pull` in the terminal.\n2. Ensure you have the `npm` dependencies by running `npm install`.\n3. Run `npm run build` to compile the website. The output will be in the `build/` folder, which you can upload the\n   contents of to most web hosts.\n\n## Technical Details\n\n- The website is currently hosted via neocities.org. Contact Kaden if you need access to the borderlinefever account.\n\n### Caveats\n\n- Unfortunately, clients running without JS cannot fully use the interactive image galleries.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebcrawls%2Fborderlinefever.neocities.org","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebcrawls%2Fborderlinefever.neocities.org","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebcrawls%2Fborderlinefever.neocities.org/lists"}