{"id":31285696,"url":"https://github.com/kriztoper/atlas","last_synced_at":"2026-04-28T12:06:30.482Z","repository":{"id":311599975,"uuid":"1044220500","full_name":"Kriztoper/atlas","owner":"Kriztoper","description":"Software development assistant tool that streamlines task management, freeing developers to focus on coding and delivering releases.","archived":false,"fork":false,"pushed_at":"2025-08-31T09:45:08.000Z","size":176,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-24T08:18:34.908Z","etag":null,"topics":["clojure","postgres","react"],"latest_commit_sha":null,"homepage":"","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kriztoper.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,"zenodo":null}},"created_at":"2025-08-25T11:08:03.000Z","updated_at":"2025-08-31T09:45:11.000Z","dependencies_parsed_at":"2025-08-25T13:24:21.106Z","dependency_job_id":"bd2cd98e-48e4-43fb-ae93-80e7ae268541","html_url":"https://github.com/Kriztoper/atlas","commit_stats":null,"previous_names":["kriztoper/atlas"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Kriztoper/atlas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kriztoper%2Fatlas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kriztoper%2Fatlas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kriztoper%2Fatlas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kriztoper%2Fatlas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kriztoper","download_url":"https://codeload.github.com/Kriztoper/atlas/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kriztoper%2Fatlas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32379679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T11:25:28.583Z","status":"ssl_error","status_checked_at":"2026-04-28T11:25:05.435Z","response_time":56,"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":["clojure","postgres","react"],"created_at":"2025-09-24T08:12:27.739Z","updated_at":"2026-04-28T12:06:30.463Z","avatar_url":"https://github.com/Kriztoper.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Atlas - Task Management Backend\n\nA Clojure-based backend API for project and task management, featuring automatic database migrations and a RESTful API.\n\n## Features\n\n- 🗃️ **Automatic Database Migrations** - Runs migrations on startup with enhanced error handling\n- 🚀 **RESTful API** - Clean API endpoints for project/task/todo management\n- 🐘 **PostgreSQL Integration** - Robust database integration with schema management\n- 🔧 **Environment Configuration** - Configurable via environment variables\n\n## Quick Start\n\n### Prerequisites\n\n- Java 8+\n- Leiningen\n- PostgreSQL 12+\n\n### Database Setup\n\n1. Create a PostgreSQL database:\n   ```sql\n   CREATE DATABASE atlas_dev;\n   CREATE USER admin WITH PASSWORD 'your_password';\n   GRANT ALL PRIVILEGES ON DATABASE atlas_dev TO admin;\n   ```\n\n2. Copy environment configuration:\n   ```bash\n   cp .env.example .env\n   # Edit .env with your database credentials\n   ```\n\n### Running the Application\n\n```bash\n# Install dependencies and run\nlein deps\nlein run\n```\n\nThe application will:\n1. Display a startup banner\n2. Automatically run any pending database migrations\n3. Start the web server on port 3001 (or PORT environment variable)\n\n### Migration Management\n\n```bash\n# Check migration status\nlein run status\n\n# Run migrations only\nlein run migrate\n\n# Rollback last migration\nlein run rollback\n\n# Create new migration\nlein run create-migration add-tasks-table\n```\n\nSee [MIGRATIONS.md](MIGRATIONS.md) for detailed migration documentation.\n\n## API Endpoints\n\nOnce running, the API will be available at `http://localhost:3001/api`\n\n- `GET /api/projects` - List projects\n- `POST /api/projects` - Create project\n- `POST /api/projects/:id/tasks` - Create task\n- `POST /api/tasks/:id/todos` - Add todo\n- And more...\n\n## Configuration\n\nConfigure via environment variables:\n\n- `DB_HOST` - Database host (default: localhost)\n- `DB_PORT` - Database port (default: 5432)\n- `DB_NAME` - Database name (default: atlas_dev)\n- `DB_USER` - Database user (default: admin)\n- `DB_PASSWORD` - Database password\n- `PORT` - Server port (default: 3001)\n\n## Development\n\n```bash\n# Run tests\nlein test\n\n# Check code\nlein check\n\n# Build uberjar\nlein uberjar\n```\n\n## License\n\nCopyright © 2025\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%2Fkriztoper%2Fatlas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkriztoper%2Fatlas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkriztoper%2Fatlas/lists"}