A website initially designed for the Interference Pattern music video, a project between Borderline Fever and Sheridan college.
These instructions are generally written for Windows computers. If you are on Linux or macOS, the instructions are different, but you should know what you're doing in that case =) [contact webcrawls for help if you need it]
- Make sure you have a copy of node.js downloaded and installed.
- Download Git (Download for Windows)
- if you're running this installer, it'll ask you a lot of questions. you should be OK to leave everything default - don't touch stuff unless you know what you're doing =)
- when the installation is finished, you should have a new program called 'Git Bash'
- Open your file explorer and find/create a folder you want the website code to live within.
- Enter that folder, hold CTRL+Shift and right-click on an empty part of the folder. You should see the option 'Open Git Bash Here'.
- Next, run
git clone https://github.com/webcrawls/PATTERN
. You can either type this out manually, or copy from this page, and right-click in the Git Bash window and select "Paste". - This command will download the code. You should see a new folder called 'PATTERN'. Success!
- Make sure you have the latest version by running
git pull
. If you just rangit clone
, then you shouldn't need to do this. - Open a Git Bash instance inside this folder, by navigating your file explorer to the PATTERN folder and pressing ctrl+shift+right-click on an empty part of the window.
- Type
npm install
inside Git Bash and press enter. This will download all necessary dependencies to run the website. - After
npm install
finishes, runnpm dev
to run a local version of the website. Once this command is ran, it should show a URL such ashttp://localhost:5173
. Navigating to this URL in the browser will bring you to the website.
If you are looking to build the full HTML-version of the website, follow these instructions.
- Ensure you have the latest version by running
git pull
in the terminal. - Ensure you have the
npm
dependencies by runningnpm install
. - Run
npm run build
to compile the website. The output will be in thebuild/
folder, which you can upload the contents of to most web hosts.
- The website is currently hosted via neocities.org. Contact Kaden if you need access to the borderlinefever account.
- Unfortunately, clients running without JS cannot fully use the interactive image galleries.