{"id":30623801,"url":"https://github.com/fastn-stack/fastn-de","last_synced_at":"2025-08-30T16:44:55.831Z","repository":{"id":302271588,"uuid":"1011819431","full_name":"fastn-stack/fastn-de","owner":"fastn-stack","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-11T08:21:18.000Z","size":159,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-28T17:55:17.878Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/fastn-stack.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-01T11:38:14.000Z","updated_at":"2025-07-11T08:21:22.000Z","dependencies_parsed_at":"2025-07-07T16:50:36.052Z","dependency_job_id":"3f974cdb-8da7-4515-8afb-da858db40450","html_url":"https://github.com/fastn-stack/fastn-de","commit_stats":null,"previous_names":["ayushdeolasee/lets-os","ayushdeolasee/lets-de","ayushdeolasee/fastn-de"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fastn-stack/fastn-de","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastn-stack%2Ffastn-de","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastn-stack%2Ffastn-de/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastn-stack%2Ffastn-de/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastn-stack%2Ffastn-de/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fastn-stack","download_url":"https://codeload.github.com/fastn-stack/fastn-de/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastn-stack%2Ffastn-de/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272878201,"owners_count":25008340,"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","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"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":"2025-08-30T16:44:50.827Z","updated_at":"2025-08-30T16:44:55.816Z","avatar_url":"https://github.com/fastn-stack.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# app template\n\nThis repository should be used to create all apps in the fifthtry marketplace \necosystem.\n\n## Instructions For People Using Template\n\n- Replace all instances of XXX with the right name (using replace all).\n- Rename the three directories.\n- Run `ln -s ../../lets-XXX.fifthtry.site lets-XXX.fifthtry.site` from\n  `lets-XXX-template.fifthtry.site/.packages`. Use `git add -f` to ensure that \n  the link is checked in the git repo.  \n- On FifthTry create the three sites and make them non-editable.\n- Create tokens for each of them and add them to Github secrets, follow the \n  names in `.github/yml` files.\n- Mark `lets-XXX.fifthtry.site` as a package on FifthTry.\n- Remove everything till this line from README.\n\n\n# `lets-XXX` - A XXX for sites\n\nYou can use this fastn app to XXX.\n\n## Developer Setup\n\nInstall `fastn`. For Mac/Linux:\n\n```sh\nsource \u003c(curl -fsSL https://fastn.com/install.sh)\n```\n\nFor Windows or for other installation methods checkout [fastn.com/install/][1].\n\n[1]: https://fastn.com/install/\n\nGit clone this repository:\n\n```sh\ngit clone https://github.com/fifthtry-community/lets-XXX.git  \n# or if you have ssh setup\ngit clone git@github.com:fifthtry-community/lets-XXX.git \n```\n\n### Use `auto.sh`\n\nThis repo comes with `scripts/auto.sh`, that you can source from your shell:\n\n```shell\nsource scripts/auto.sh\n```\n\nOnce done, you will have a few commands available.\n\n### `run-ui`\n\nThis is what you want to run when you are building the UI of the `lets-XXX`\napp.\n\nNote: call `update-ui` if you modify dependencies in \n`lets-XXX.fifthtry.site/FASTN.ftd`, and during the initial setup.\n\n```sh\nupdate-ui  # only run this when modifying dependencies and during initial setup\nrun-ui\n```\n\nOnce you run it, it will start `fastn` server on 8002, so you can visit\n`http://127.0.0.1:8002/storybook/` to see various UI states. \n\nYou can find the code of the UI in `lets-XXX.fifthtry.site/ui` folder, and\nthe storybook configuration in `lets-XXX.fifthtry.site/ui/storybook` folder.\n\n### `run-template`\n\nYou want to run this when you want to test the end to end backend functionality\nof `lets-XXX` app. This also has a corresponding `update-template` command\nwhich should be used when you modify dependencies or when setting up for the\nfirst time.\n\nTemplate code is in `lets-XXX-template.fifthtry.site`.\n\n### `run-www`\n\nUse this (and `update-www`) when you want to test the `lets-XXX` apps public\nwebsite, which is stored in `lets-XXX.fifthtry-community.com` folder.\n\n\n## Licence\n\nThis repo is MIT Licensed. See [LICENSE](LICENSE) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastn-stack%2Ffastn-de","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffastn-stack%2Ffastn-de","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastn-stack%2Ffastn-de/lists"}