{"id":42510887,"url":"https://github.com/arkits/historian","last_synced_at":"2026-01-28T14:11:42.621Z","repository":{"id":37028997,"uuid":"259527046","full_name":"arkits/historian","owner":"arkits","description":"🕵️ Historian Never Forgets","archived":false,"fork":false,"pushed_at":"2026-01-27T10:22:25.000Z","size":6504,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-27T22:37:26.992Z","etag":null,"topics":["express","hacktoberfest","lifelogging","typescript"],"latest_commit_sha":null,"homepage":"https://historian.archit.xyz/","language":"TypeScript","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/arkits.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2020-04-28T04:01:16.000Z","updated_at":"2026-01-19T07:11:05.000Z","dependencies_parsed_at":"2023-02-08T07:15:18.108Z","dependency_job_id":null,"html_url":"https://github.com/arkits/historian","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/arkits/historian","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkits%2Fhistorian","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkits%2Fhistorian/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkits%2Fhistorian/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkits%2Fhistorian/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arkits","download_url":"https://codeload.github.com/arkits/historian/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkits%2Fhistorian/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846058,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T13:02:32.985Z","status":"ssl_error","status_checked_at":"2026-01-28T13:02:04.945Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["express","hacktoberfest","lifelogging","typescript"],"created_at":"2026-01-28T14:11:41.943Z","updated_at":"2026-01-28T14:11:42.614Z","avatar_url":"https://github.com/arkits.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Historian\n\nA full-stack web application built with Bun, React, tRPC, and PostgreSQL.\n\n## Tech Stack\n\n- **Runtime**: [Bun](https://bun.sh/) - Fast all-in-one JavaScript runtime\n- **Frontend**: React 19 with TypeScript\n- **Backend**: tRPC for type-safe APIs\n- **Database**: PostgreSQL with [Drizzle ORM](https://orm.drizzle.team/)\n- **Authentication**: [better-auth](https://www.better-auth.com/)\n- **Styling**: Tailwind CSS with shadcn/ui components\n- **Testing**: Vitest\n- **Database Migrations**: Drizzle migrations\n\n## Prerequisites\n\n- [Bun](https://bun.sh/) installed\n- PostgreSQL database (local or hosted)\n\n## Getting Started\n\n### Installation\n\n```bash\nbun install\n```\n\n### Environment Variables\n\nCreate a `.env` file based on `.env.example` (copy and modify):\n\n```bash\ncp .env.example .env\n```\n\nConfigure the following variables:\n\n- `DATABASE_URL` - PostgreSQL connection string\n- `AUTH_SECRET` - Secret key for authentication\n\n### Database Setup\n\nRun migrations to set up the database schema:\n\n```bash\nbun run migrate\n```\n\n### Development\n\nStart the development server with hot reload:\n\n```bash\nbun dev\n```\n\nThe application will be available at `http://localhost:3000`\n\n### Production\n\nBuild and start the production server:\n\n```bash\nbun run build\nbun start\n```\n\n### Testing\n\nRun tests with Vitest:\n\n```bash\nbun test\n```\n\n## Project Structure\n\n```\n├── src/\n│   ├── client/           # tRPC client configuration\n│   ├── components/       # React components (shadcn/ui)\n│   ├── lib/              # Utility functions and database\n│   ├── pages/            # Page components\n│   ├── server/           # tRPC router and server setup\n│   ├── App.tsx           # Main App component\n│   ├── frontend.tsx      # Frontend entry point\n│   └── index.ts          # Application entry point\n├── drizzle/\n│   ├── meta/             # Drizzle migration metadata\n│   └── 0000_heavy_venom.sql  # Migration files\n├── tests/                # Vitest test files\n├── build.ts              # Build script\n├── migrate.ts            # Database migration script\n├── drizzle.config.ts     # Drizzle configuration\n└── bunfig.toml           # Bun configuration\n```\n\n## Docker\n\nBuild and run with Docker:\n\n```bash\ndocker build -t historian .\ndocker run -p 3000:3000 historian\n```\n\n## Available Scripts\n\n| Command            | Description              |\n| ------------------ | ------------------------ |\n| `bun dev`          | Start development server |\n| `bun start`        | Start production server  |\n| `bun run build`    | Build the application    |\n| `bun test`         | Run tests                |\n| `bun run migrate`  | Run database migrations  |\n| `bun run db:reset` | Reset database schema    |\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farkits%2Fhistorian","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farkits%2Fhistorian","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farkits%2Fhistorian/lists"}