{"id":13510121,"url":"https://github.com/standardnotes/listed","last_synced_at":"2025-04-05T03:09:52.551Z","repository":{"id":37663407,"uuid":"173347267","full_name":"standardnotes/listed","owner":"standardnotes","description":"Create an online publication with automatic email newsletters. https://listed.to","archived":false,"fork":false,"pushed_at":"2024-11-17T17:27:11.000Z","size":4027,"stargazers_count":110,"open_issues_count":67,"forks_count":27,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-29T02:06:15.733Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/standardnotes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":{"github":["standardnotes"]}},"created_at":"2019-03-01T18:08:16.000Z","updated_at":"2025-02-08T05:14:59.000Z","dependencies_parsed_at":"2024-05-28T03:15:38.034Z","dependency_job_id":"f3dd7ecf-4d3b-4872-989b-6dd65dd48a7b","html_url":"https://github.com/standardnotes/listed","commit_stats":null,"previous_names":[],"tags_count":97,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/standardnotes%2Flisted","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/standardnotes%2Flisted/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/standardnotes%2Flisted/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/standardnotes%2Flisted/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/standardnotes","download_url":"https://codeload.github.com/standardnotes/listed/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247280272,"owners_count":20912967,"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":[],"created_at":"2024-08-01T02:01:24.856Z","updated_at":"2025-04-05T03:09:52.537Z","avatar_url":"https://github.com/standardnotes.png","language":"JavaScript","readme":"# Listed\n\n_Listed_ is a minimal blogging platform ideal for publishing a public journal or sharing domain specific knowledge. Writers can publish directly from the comforts of [Standard Notes](https://standardnotes.com) and readers can subscribe to new articles via email.\n\nListed is unopinionated about fonts, widths, and colors, and instead defers to the reader's system settings to provide a familiar experience.\n\n## Usage\n\nGenerate an author code on [listed.to](https://listed.to) to get started.\n\n### Customization\n\n#### How to style your blog with custom CSS:\n\n1\\. Create a new note in Standard Notes, and call it `listed_styles.css` (name doesn't matter).\n\n2\\. Use the following metadata structure, followed by some CSS, then publish the note to your blog.\n\n    ---\n    metatype: css\n    ---\n\n    html, body {\n    \tfont-family: \"Avenir Next\", sans-serif;\n    \tcolor: #37424F;\n    }\n\n    h1 a, h2 a, h3 a, h4 a {\n    \tcolor: #37424F !important;\n    }\n\n    .post-content {\n    \tcolor: #37424F !important;\n    }\n\n    #author-header .bio {\n    \topacity: 1.0;\n    }\n\n#### How to specify post date and canonical URL:\n\nYou can change the date that appears on your post, or set a [canonical URL](https://en.wikipedia.org/wiki/Canonical_link_element) if you're importing a post from another location (such as Medium).\n\n1\\. Use the following metadata structure at the beginning of your note:\n\n    ---\n    created_at: 2017-11-20 17:08:05\n    canonical: https://mysite.com/blog/1/post-im-importing.\n    ---\n\n    Your story...`\n\n## Contributing\n\n### How to run application locally\n\nTo run the application locally, after cloning the repo follow these steps:\n```\nyarn install --pure-lockfile\nbundle exec rails db:migrate\nbundle exec rails db:seed\ngem install bundler \u0026\u0026 bundle install\nyarn build:dev\nrails s -p 3009\n```\n\nNow the application should be running on http://localhost:3009 and webpack-dev-server should be watching source files and recompiling as you make changes in your code to allow live reloading.\n\n\n### How to run locally with Docker\n\nTo run the application locally you have to install Docker and type the following:\n```\ncp .env.sample .env\ndocker-compose up -d\n```\n\nNow the application should be running on http://localhost:3000\n\n### Seeding data\n\n```\nTRUNCATE TABLE subscriptions;\nTRUNCATE TABLE subscribers;\nTRUNCATE TABLE authors;\n\nINSERT INTO authors (secret, email, email_verified, created_at, updated_at)\nVALUES\n('secret1', 'author1@example.com', true, NOW(), NOW()),\n('secret2', 'author2@example.com', true, NOW(), NOW()),\n('secret3', 'author3@example.com', true, NOW(), NOW());\n\nINSERT INTO subscribers (email, created_at, updated_at)\nVALUES\n('sub1@example.com', NOW(), NOW()),\n('sub2@example.com', NOW(), NOW()),\n('sub3@example.com', NOW(), NOW());\n\nINSERT INTO subscriptions (author_id, subscriber_id, token, verified, frequency, created_at, updated_at)\nVALUES\n(1, 1, 'token1', true, 'daily', NOW(), NOW()),\n(2, 2, 'token2', true, 'daily', NOW(), NOW()),\n(3, 3, 'token3', true, 'daily', NOW(), NOW());\n\n```\n","funding_links":["https://github.com/sponsors/standardnotes"],"categories":["JavaScript","others","Happy Exploring 🤘"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstandardnotes%2Flisted","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstandardnotes%2Flisted","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstandardnotes%2Flisted/lists"}