{"id":21748502,"url":"https://github.com/eos-uiux-solutions/user-story","last_synced_at":"2025-04-13T07:13:46.852Z","repository":{"id":39413739,"uuid":"371424722","full_name":"EOS-uiux-Solutions/user-story","owner":"EOS-uiux-Solutions","description":"POST stories. GET features.","archived":false,"fork":false,"pushed_at":"2023-02-05T08:01:08.000Z","size":43377,"stargazers_count":41,"open_issues_count":70,"forks_count":46,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-13T07:13:41.398Z","etag":null,"topics":["cypress","javascript","react","scss","strapi"],"latest_commit_sha":null,"homepage":"https://userstory.site","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/EOS-uiux-Solutions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-27T15:40:49.000Z","updated_at":"2024-10-25T13:49:42.000Z","dependencies_parsed_at":"2023-02-18T22:30:32.896Z","dependency_job_id":null,"html_url":"https://github.com/EOS-uiux-Solutions/user-story","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EOS-uiux-Solutions%2Fuser-story","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EOS-uiux-Solutions%2Fuser-story/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EOS-uiux-Solutions%2Fuser-story/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EOS-uiux-Solutions%2Fuser-story/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EOS-uiux-Solutions","download_url":"https://codeload.github.com/EOS-uiux-Solutions/user-story/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248675422,"owners_count":21143768,"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","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":["cypress","javascript","react","scss","strapi"],"created_at":"2024-11-26T08:14:04.790Z","updated_at":"2025-04-13T07:13:46.537Z","avatar_url":"https://github.com/EOS-uiux-Solutions.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Open Source Love svg2](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/)\n[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](https://choosealicense.com/licenses/mit/)\n\nOnline demo: [Userstory.site](https://userstory.site)\n\n# User Story\n\n![](./static/user_story.png)\n\n# Introduction\n\nThe goal of **User Story** is to design and present a scalable backend infrastructure that delivers a web interface allowing users to request new features and give feedback in an easy and intuitive way. Users can attach files with their story to explain what they want. The admins can then resolve, close and update the status of these stories. Users can interact with other stories via comments and votes. This can also serve as an efficient feedback and response mechanism which is critical for any organization to improve and make progress. Put in simple words, User Story is an open **product management tool**.\n\n# How it works\n\n![](./static/user_story_workflow.png)\n\n# Guidelines for development\n\n### Setting up the project\n\nAfter cloning this repository you will need to install all the dependencies: `npm i -f`\n\nUser Story uses [this repository](https://github.com/EOS-uiux-Solutions/strapi) as its `backend`. There are two ways to set up the `backend`:\n\n- You can use Docker to setup backend by following [these instructions](https://github.com/EOS-uiux-Solutions/strapi#using-docker) If you are planning to work only on the `frontend` of User Story, then follow along.\n\n- You can setup `backend` locally by following [these instructions](https://github.com/EOS-uiux-Solutions/strapi#locally).\n\n#### Backend configurations\n\nAfter setting up the project, make sure the following configurations exist in the backend.\n\n- A permission named as `Delete Story` should be defined in the **User Story Permission** collection.\n- Only those instances of **User Story Roles**, that have the `Delete Story` permission, will be allowed to delete a story.\n- Only those instances of **User Story Roles**, that have the `Edit Story` or `Update Story Status` permission, will be allowed to update the status of a story using drag and drop in the roadmap view.\n- Only those instances of **User Story Roles**, that have the `Edit Story` or `Add New Status` permission, will be allowed to add a new status type in the roadmap view.\n\nIf you want to work only on the `frontend` then copy the `src/config.temp.json` and remove the `.temp` part from the file name. It is already assigned with the default value of `apiURL` to `https://strapi.userstory.site`. You can change it for your own Strapi endpoint if you are running already. The `APP_ENV` key will accept any string value. If you set it as \"prod\" it will not print console.logs so this is the recommended setting for production environment.\n\nThen run: `npm start` to run the app in development mode.\n\nOpen [http://localhost:3000](http://localhost:3000) to view it in the browser.\n\nThe page will reload if you make edits. You will also see any lint errors in the console.\n\n### JS and SCSS quality assurance\n\nBefore submitting a PR/MR make sure your code is compliant with our JS rules by running: `npm run test:js`\nYou can format it automatically by running: `npm run format`.\n\nWe use the `sass-lint` because it is also compatible with SCSS syntax. To make sure your SCSS is compliant run: `npm run test:scss`.\n\n### Build it to ensure it will work on production\n\n`npm run build`\n\nBuilds the app for production to the `build` folder. It correctly bundles React in production mode and optimizes the build for the best performance.\n\nThe build is minified and the filenames include the hashes.\u003cbr /\u003e\n\nYour app is ready to be deployed!\n\nSee the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.\n\n# How to contribute\n\n### Code contributions\n\n1. Open a new issue or pick an open issue from the issue list and claim it in the comments. Make sure that the issue is confirmed so you don't work on something that will not be approved to be merged.\n2. Make sure you follow our best practices: [refer to our Wiki](https://github.com/EOS-uiux-Solutions/wiki/blob/main/README.md). You'll find information on writing code, how to name a branch, how we release, etc.\n3. Join Slack [optional] to get in touch with the maintainers if you have any doubt: [join slack](http://slack.eosdesignsystem.com)\n4. Make sure you fork the project, cloning it will not give you the right access to open a PR/MR. [How to open a PR in open source](https://github.com/EOS-uiux-Solutions/wiki/blob/main/Basic-git-instructions-for-beginners.md)\n\n### Design contributions\n\nIf you'd like to contribute with design changes, you'll have to do as follows:\n\n1. [Open an issue](https://github.com/EOS-uiux-Solutions/user-story/issues/new)\n2. Add all relevant information to the issue. Please be as descriptive as possible. Add links to references, images, videos, etc.\n3. While working on your design, please make sure you follow our [design guidelines](https://github.com/EOS-uiux-Solutions/wiki/blob/main/Design-process-and-feedback-gathering.md).\n4. Once the issue is approved by us, it'll be ready to be implemented.\n\n## Learn more about the EOS UX/UI Solutions\n\n- [EOS Icons](https://eos-icons.com)\n\n- [EOS User Story](https://userstory.site)\n\n- [Follow us on Twitter](https://twitter.com/eos_uxui)\n\n- [Join us on Slack](https://slack.userstory.site)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feos-uiux-solutions%2Fuser-story","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feos-uiux-solutions%2Fuser-story","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feos-uiux-solutions%2Fuser-story/lists"}