{"id":13764153,"url":"https://github.com/tejo/boxed","last_synced_at":"2026-01-26T00:35:46.733Z","repository":{"id":30626734,"uuid":"34182174","full_name":"tejo/boxed","owner":"tejo","description":"dropbox based blog engine, written in go.","archived":false,"fork":false,"pushed_at":"2018-08-09T20:27:08.000Z","size":14243,"stargazers_count":78,"open_issues_count":0,"forks_count":9,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-10T17:41:40.267Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tejo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-18T20:48:46.000Z","updated_at":"2025-02-11T21:31:47.000Z","dependencies_parsed_at":"2022-09-03T23:50:49.149Z","dependency_job_id":null,"html_url":"https://github.com/tejo/boxed","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/tejo/boxed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tejo%2Fboxed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tejo%2Fboxed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tejo%2Fboxed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tejo%2Fboxed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tejo","download_url":"https://codeload.github.com/tejo/boxed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tejo%2Fboxed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28762792,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T23:06:19.311Z","status":"ssl_error","status_checked_at":"2026-01-25T23:03:50.555Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-03T15:01:16.864Z","updated_at":"2026-01-26T00:35:46.701Z","avatar_url":"https://github.com/tejo.png","language":"Go","readme":"## [NO LONGER ACTIVE]\n\n## Boxed\n\nA Dropbox based blog engine\n\nThis project started as a blog as a service platform, but it quickly ended up to be my\n[personal blog](http://blog.parmi.it/). It does its job, it's far away to be pretty and polished but you maybe find it\nuseful. It allows you to manage your blog in markdown format from your dropbox\nfolder.\n\nYou can run it on your machine without installing anything, It's all bundled in the executable (html and css too), and it saves the data in a [bolt](https://github.com/boltdb/bolt) database. It's performance wise too, my personal blog is served by a raspberry pi behind my crappy DSL router.\n\n### Try it\n\nIf you want to try it without compile it by yourself you can grab the executable\nfrom the [aplha releases](https://github.com/tejo/boxed/releases/tag/v0.1-alpha)\npage\n\nYou have to create a [dropbox app](https://www.dropbox.com/developers/apps) and\nselect the following:\n\n\n- Dropbox API app\n- Files and datastores\n- Yes My app only needs access to files it creates.\n- webhook url: http://yoursitehost.com/webhook\n\n\nthen you need to modify the ```.env.sample``` file accordingly and in your terminal:\n\n```\n# set env variables\nsource .env.sample\n\n# link local app to dropbox (follow the instructions)\n./boxed --oauth\n\n# put a markdown file in the published folder in your dropbox directory and publish it with:\n./boxed --refresh\n\n#run the server with\n./boxed\n\n# visit localhost:8080 to see the result \n```\n\n\nif you have correctly set the webhook path you don't need to refresh, it will be published when the article will been synchronized to your dropbox.\n\n\n### Articles metadata\n\nBoxed will try its best to figure out the publication date and title from the markdown article. If this is not enough for you, you can specify some metadata with a markdown/json comment like this:\n\n```\n\u003c!--{\n\t\t\"created-at\": \"2013-11-11\",\n\t\t\"permalink\": \"a-brand-new-blog\",\n\t\t\"title\": \"A brand new blog\"\n}--\u003e\n\n```\n\n### Images\n\nBoxed supports images out of the box, you have to put them in the ```images``` folder, and then reference them like: ```![cool image](../images/image.jpeg \"Cool image\")```\n\n\n### Template customization\n\nBoxed comes with the excellent default [hyde](http://hyde.getpoole.com/) template. If you want to change it, like i did it for my [blog](http://boxed.parmi.it/), you have to be able to compile go code, then you have to change the template/css files and then use [go rice](https://github.com/GeertJohan/go.rice) to bundle them back in the executable. \n\nFuture versions will allow to customize the look and feel directly from the dropbox folder.\n\n### Tests\n\nYou can run boxed tests with:\n\n```\ngo test ./...\n```\n\n### Licence\nThis project is licensed under a Simplified BSD license. Please read the [LICENSE file](https://github.com/tejo/boxed/blob/master/LICENSE).\n\n### TODO \u0026 Development\n- make onboarding easier\n- allow look and feel customization from dropbox folder without requiring code compilation.\n- add tests for the http flow\n- blog live updates with SSE or websockets\n- allow articles to be published in the future\n","funding_links":[],"categories":["Software Packages","软件包","軟件包","Other Software","Go Tools","Go 工具"],"sub_categories":["Other Software","其他软件库和软件包","其他軟件","Contents","其他软件"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftejo%2Fboxed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftejo%2Fboxed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftejo%2Fboxed/lists"}