The *.jpg
Files¶
Filename | Location | Group | Project/Repository |
---|---|---|---|
*.jpg | ./static/images/*.jpg | application | httpcats |
Why?¶
The main objective of our little application is to give people a gallery of HTTP return codes rendered in cat memes. It's the only way to lookup HTTP return codes.
To do this, we're going to be using a pre-made set of images.
Note
All the images we're using are released under a Creative Commons licence.
The Solution¶
Download this ZIP file and unzip it to your httpcats
repository, under the static/images
directory. You should end up with a cats
directory containing a lot of JPGs.
Note
Remember to not commit the cats.zip
to your httpcats
otherwise you'll bloat its size needlessly.
- Set your working directory to the
application/httpcats
repository - Create a directory called
static/images/cats/
usingmkdir -p static/images/cats
- Use
cd static/images/cats
to move into the correct direction - Unzip
cats.zip
into theimages/cats/
directory - Use
git add static/images/
to stage the images (avoid including thecats.zip
to keep the repository's size down)