Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added product query in the URL #227

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
newuserstory.eosdesignsystem.com
128 changes: 0 additions & 128 deletions CODE_OF_CONDUCT.md

This file was deleted.

54 changes: 0 additions & 54 deletions CONTRIBUTING.md

This file was deleted.

10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
[![Open Source Love svg2](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/)
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](https://choosealicense.com/licenses/mit/)

Online demo: [Userstory.site](https://userstory.site)

# User Story

![](./static/user_story.png)

# Introduction

The 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**.
The 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. Simply, its a **product management tool**.

# How it works

Expand All @@ -27,7 +25,7 @@ User Story uses [this repository](https://github.com/EOS-uiux-Solutions/strapi)

- You can setup `backend` locally by following [these instructions](https://github.com/EOS-uiux-Solutions/strapi#locally).

If 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.
If you want to work only on the `frontend` then go to `src/config.json` and change the value of `apiURL` to `https://userstory-strapi.herokuapp.com`.

Then run: `npm start` to run the app in development mode.

Expand Down Expand Up @@ -72,11 +70,11 @@ If you'd like to contribute with design changes, you'll have to do as follows:
3. 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).
4. Once the issue is approved by us, it'll be ready to be implemented.

# Learn more about the EOS UX/UI Solutions
# Learn more about the EOS Design System

- [EOS Icons](https://eos-icons.com)

- [EOS User Story](https://userstory.site)
- [EOS User Story](https://userstory.eosdesignsystem.com/)

- [EOS Design System](https://www.eosdesignsystem.com)

Expand Down
17 changes: 5 additions & 12 deletions cypress.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"baseUrl": "http://localhost:3000",
"env": {
"testUser": {
"testUser":{
"username": "user1",
"email": "[email protected]",
"password": "password"
},
"testUser2": {
"testUser2":{
"username": "user1",
"email": "[email protected]",
"password": "password"
Expand All @@ -23,14 +23,7 @@
"title": "This is a test story",
"product": "EOS Icons",
"category": "Documentation"
},
"noStoryMessage": "No story found"
}
},
"testFiles": [
"auth.spec.js",
"new_story.spec.js",
"user_story.spec.js",
"dashboard.spec.js",
"user_account.spec.js"
]
}
"testFiles": ["auth.spec.js","new_story.spec.js","user_story.spec.js","dashboard.spec.js", "user_account.spec.js"]
}
Loading