{"id":51403928,"url":"https://github.com/twlab/smaht-web","last_synced_at":"2026-07-04T09:32:33.609Z","repository":{"id":295272115,"uuid":"602159954","full_name":"twlab/smaht-web","owner":"twlab","description":"web portal for smaht project","archived":false,"fork":false,"pushed_at":"2025-09-23T03:19:26.000Z","size":8205,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-23T05:39:51.358Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Astro","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/twlab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":null,"dco":null,"cla":null}},"created_at":"2023-02-15T16:12:04.000Z","updated_at":"2025-09-23T03:19:29.000Z","dependencies_parsed_at":"2025-09-23T05:28:44.041Z","dependency_job_id":"9e231fc2-8af8-48c0-8caf-92f53b05ca45","html_url":"https://github.com/twlab/smaht-web","commit_stats":null,"previous_names":["twlab/smaht-web"],"tags_count":0,"template":false,"template_full_name":"arthelokyo/astrowind","purl":"pkg:github/twlab/smaht-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twlab%2Fsmaht-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twlab%2Fsmaht-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twlab%2Fsmaht-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twlab%2Fsmaht-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/twlab","download_url":"https://codeload.github.com/twlab/smaht-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/twlab%2Fsmaht-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35117335,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-04T02:00:05.987Z","response_time":113,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2026-07-04T09:32:32.850Z","updated_at":"2026-07-04T09:32:33.603Z","avatar_url":"https://github.com/twlab.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SMaHT web portal\n\nBased on AstroWind template.\n\n### Commands\n\nAll commands are run from the root of the project, from a terminal:\n\n| Command               | Action                                             |\n| :-------------------- | :------------------------------------------------- |\n| `npm install`         | Installs dependencies                              |\n| `npm run dev`         | Starts local dev server at `localhost:3000`        |\n| `npm run build`       | Build your production site to `./dist/`            |\n| `npm run preview`     | Preview your build locally, before deploying       |\n| `npm run format`      | Format codes with Prettier                         |\n| `npm run lint:eslint` | Run Eslint                                         |\n| `npm run astro ...`   | Run CLI commands like `astro add`, `astro preview` |\n\n\u003cbr\u003e\n\n### Configuration\n\nBasic configuration file: `./src/config.mjs`\n\n```javascript\nconst CONFIG = {\n  name: 'Example',\n\n  origin: 'https://example.com',\n  basePathname: '/', // Change this if you need to deploy to Github Pages, for example\n  trailingSlash: false, // Generate permalinks with or without \"/\" at the end\n\n  title: 'Example - This is the homepage title of Example', // Default seo title\n  description: 'This is the homepage description of Example', // Default seo description\n  defaultImage: 'image.jpg', // Default seo image\n\n  defaultTheme: 'system', // Values: \"system\" | \"light\" | \"dark\" | \"light:only\" | \"dark:only\"\n\n  language: 'en', // Default language\n  textDirection: 'ltr', // Default html text direction\n\n  dateFormatter: new Intl.DateTimeFormat('en', {\n    // Date format\n    year: 'numeric',\n    month: 'short',\n    day: 'numeric',\n    timeZone: 'UTC',\n  }),\n\n  googleAnalyticsId: false, // Or \"G-XXXXXXXXXX\",\n  googleSiteVerificationId: false, // Or some value,\n\n  blog: {\n    disabled: false,\n    postsPerPage: 4,\n\n    post: {\n      permalink: '/%slug%', // variables: %slug%, %year%, %month%, %day%, %hour%, %minute%, %second%, %category%\n      noindex: false,\n      disabled: false,\n    },\n\n    list: {\n      pathname: 'blog', // Blog main path, you can change this to \"articles\" (/articles)\n      noindex: false,\n      disabled: false,\n    },\n\n    category: {\n      pathname: 'category', // Category main path /category/some-category\n      noindex: true,\n      disabled: false,\n    },\n\n    tag: {\n      pathname: 'tag', // Tag main path /tag/some-tag\n      noindex: true,\n      disabled: false,\n    },\n  },\n};\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwlab%2Fsmaht-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwlab%2Fsmaht-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwlab%2Fsmaht-web/lists"}