{"id":21540818,"url":"https://github.com/puchka/memecollect","last_synced_at":"2026-01-21T17:34:55.983Z","repository":{"id":151219280,"uuid":"240233752","full_name":"puchka/memecollect","owner":"puchka","description":"Application for collecting meme and sharing meme collection","archived":false,"fork":false,"pushed_at":"2024-06-19T17:35:36.000Z","size":57,"stargazers_count":2,"open_issues_count":13,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-13T19:21:56.133Z","etag":null,"topics":["clojure","clojurescript","collect-memes","collection","collections","meme","memes"],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/puchka.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":"2020-02-13T10:28:49.000Z","updated_at":"2024-06-19T17:35:36.000Z","dependencies_parsed_at":"2024-11-24T04:21:06.690Z","dependency_job_id":"ac65155e-2d44-4edd-b0e7-2cca181b0643","html_url":"https://github.com/puchka/memecollect","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puchka%2Fmemecollect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puchka%2Fmemecollect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puchka%2Fmemecollect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/puchka%2Fmemecollect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/puchka","download_url":"https://codeload.github.com/puchka/memecollect/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247694876,"owners_count":20980733,"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","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":["clojure","clojurescript","collect-memes","collection","collections","meme","memes"],"created_at":"2024-11-24T04:20:11.903Z","updated_at":"2026-01-21T17:34:55.936Z","avatar_url":"https://github.com/puchka.png","language":"Clojure","funding_links":[],"categories":["Clojure"],"sub_categories":[],"readme":"# memecollect\n\nA Clojure application destined to help users find and\ncollect memes that correspond on their sense of humor.\n\n## Usage\n\nRunning with Docker\n-------------------\n\nFirst, put the following environment variable inside a file e.g. `.env` in home directory\n\n- **MEMECOLLECT_BASE_URL** Base URL for the memecollect app\n- **MEMECOLLECT_SMTP_HOSTNAME** SMTP Hostname for sending email\n- **MEMECOLLECT_SMTP_PORT** SMTP Port for sending email\n- **MEMECOLLECT_SMTP_USERNAME** SMTP Username for the SMTP server\n- **MEMECOLLECT_SMTP_PASSWORD** SMTP Password for the SMTP server\n\nSecond, run the following commands in a shell.\n\n```sh\n$ docker build -t memecollect .\n$ docker run --env-file=.env -it --rm -p 3000:3000 memecollect\n```\n\nThen navigate to http://localhost:3000 to see pieces of arts that\nare proposed to you.\n\n\nTo run locally\n--------------\n\n### Environment variables\n\nThe following environment variables are required before running memecollect.\ne.g. This can be done by defining them in a shell script and run it with `source .env`\n\n- **MEMECOLLECT_DATA_DIR** Path to the data directory\n- **MEMECOLLECT_BASE_URL** Base URL for the memecollect app\n- **MEMECOLLECT_SMTP_HOSTNAME** SMTP Hostname for sending email\n- **MEMECOLLECT_SMTP_PORT** SMTP Port for sending email\n- **MEMECOLLECT_SMTP_USERNAME** SMTP Username for the SMTP server\n- **MEMECOLLECT_SMTP_PASSWORD** SMTP Password for the SMTP server\n\nRun the following commands in different shells after defining the environment variables described above:\n\n```sh\n$ lein figwheel\n```\n```sh\n$ export $(cat .env | xargs) \u0026\u0026 lein run\n```\n\n## Directory Structure of the project\n\n```\n.\n|-- CHANGELOG.md\n|-- data\n|-- doc\n|   -- intro.md\n|-- Dockerfile\n|-- LICENSE\n|-- project.clj\n|-- README.md\n|-- resources\n|   -- public\n|       |-- css\n|       |   -- design.css\n|       |-- images\n|       |   -- memecollect-logo.png\n|       -- js\n|           |-- app.js\n|           -- out\n|-- src\n|   -- memecollect\n|       |-- core.clj\n|       |-- core.cljs\n|       |-- data\n|       |   -- persistence.clj\n|       |-- misc.clj\n|       |-- users.clj\n|       |-- util\n|       |   |-- properties.clj\n|       |   -- sendmail.clj\n|       -- views\n|           |-- contents.clj\n|           -- layout.clj\n|-- test\n|   -- memecollect\n|       -- core_test.clj\n```\n\n## License\n\nCopyright © 2024\n\nThis program and the accompanying materials are made available under the\nterms of the Eclipse Public License 2.0 which is available at\nhttp://www.eclipse.org/legal/epl-2.0.\n\nThis Source Code may also be made available under the following Secondary\nLicenses when the conditions for such availability set forth in the Eclipse\nPublic License, v. 2.0 are satisfied: GNU General Public License as published by\nthe Free Software Foundation, either version 2 of the License, or (at your\noption) any later version, with the GNU Classpath Exception which is available\nat https://www.gnu.org/software/classpath/license.html.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpuchka%2Fmemecollect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpuchka%2Fmemecollect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpuchka%2Fmemecollect/lists"}