https://github.com/surajgoraya/gravatarlookup
Looks up Gravatar profile pictures via an email, good for easily grabbing and downloading your own avatar if you don't have access to it anymore.
https://github.com/surajgoraya/gravatarlookup
gravatar gravatar-api gravatar-grabber svelte sveltejs tool wordpress
Last synced: 3 months ago
JSON representation
Looks up Gravatar profile pictures via an email, good for easily grabbing and downloading your own avatar if you don't have access to it anymore.
- Host: GitHub
- URL: https://github.com/surajgoraya/gravatarlookup
- Owner: surajgoraya
- Created: 2021-12-15T19:37:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-14T19:55:41.000Z (11 months ago)
- Last Synced: 2025-01-10T16:35:35.635Z (5 months ago)
- Topics: gravatar, gravatar-api, gravatar-grabber, svelte, sveltejs, tool, wordpress
- Language: Svelte
- Homepage: https://gravatarlookup.vercel.app
- Size: 217 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gravatar Look Up Tool
### Available here: [gravatarlookup.vercel.app](https://gravatarlookup.vercel.app)
Looks up [Gravatar](https://en.gravatar.com/) profile pictures via an email, good for easily grabbing and downloading your own avatar if you don't have access to it anymore
This app uses [Svelte](https://svelte.dev/), as well as the beautiful [Sakura](https://github.com/oxalorg/sakura/) and was mainly made so I can get my hands dirty and build _something_ with Svelte. Deployment and Getting started instructions
are below.## Get started
Install the dependencies...
```bash
cd svelte-app
npm install
```...then start [Rollup](https://rollupjs.org):
```bash
npm run dev
```Navigate to [localhost:5000](http://localhost:5000). You should see your app running. Edit a component file in `src`, save it, and reload the page to see your changes.
By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the `sirv` commands in package.json to include the option `--host 0.0.0.0`.
If you're using [Visual Studio Code](https://code.visualstudio.com/) we recommend installing the official extension [Svelte for VS Code](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode). If you are using other editors you may need to install a plugin in order to get syntax highlighting and intellisense.
## Building and running in production mode
To create an optimised version of the app:
```bash
npm run build
```## Deploying to the web
### With [Vercel](https://vercel.com)
Install `vercel` if you haven't already:
```bash
npm install -g vercel
```Then, from within your project folder:
```bash
cd public
vercel deploy --name my-project
```