https://wearablecomputing.github.io/wearing_sound_projects/
- Check the "archive" folder to see if there is a folder for the current course year, e.g., "2023-2024". If such a folder does not exist, create it.
- Place your project folder inside the respective course year folder.
- Inside your project folder, create a subfolder named "Images".
- Copy all relevant images to the "Images" folder.
- Navigate to the project root directory.
- Execute the preprocessing script by running:
sh ./archive/image-preprocessing.shThis script uses ImageMagick to convert images to webp format and creates different resolutions. Ensure the script completes successfully.
- Go to the newly created "medium" subfolder within "Images".
- Select one image to be the title image and rename it to "title_img.webp".
- If your project includes audio files, run the following at the project root:
sh ./archive/audio-preprocessing.sh
- Navigate to the "_posts" folder.
- Create a new markdown (.md) file for the project. Use an existing post as a template.
- Make sure to stick to the naming convention of the .md file ("2024-01-01-project title" for a project in the course "2024/2025")
- Also make sure that the project name in the .md file name matches the folder name in /archive folder
- Replace the template content with the new project information.
- Review your changes to ensure all new files are added and existing files are correctly updated.
- Commit the changes to your local git repository with a meaningful commit message.
- Push the committed changes to the GitHub repository to update the online project archive.
- Always compare the structure and formatting with existing projects in the archive to ensure consistency.
- Use Jekyll commands (
bundle exec jekyll serveorjekyll serve) to test the project locally before pushing changes to ensure that everything displays correctly on the website. Note: When testing locally, images that are not yet pushed to GitHub are not displayed.