Skip to content

Commit e66c2e6

Browse files
committed
Merge branch 'master' of github.com:aretecode/laid-off-notes into deps
# Conflicts: # yarn.lock
2 parents c2e5dc9 + a694860 commit e66c2e6

File tree

5 files changed

+47
-10
lines changed

5 files changed

+47
-10
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 James
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Modern Stack Portfolio
22

3-
> [Project issues available here](https://github.com/aretecode/modern-stack-web-portfolio/projects/1)
3+
4+
[![Known Vulnerabilities](https://snyk.io/test/github/aretecode/modern-stack-web-portfolio/badge.svg)](https://snyk.io/test/github/aretecode/modern-stack-web-portfolio)
5+
6+
- [Project issues](https://github.com/aretecode/modern-stack-web-portfolio/projects/1)
7+
- [Confluence](https://aretecode.atlassian.net/wiki/spaces/OSWP/overview)
8+
- [Bitbucket](https://bitbucket.org/aretecodes/modern-stack-web-portfolio/)
9+
- [JIRA](https://aretecode.atlassian.net/jira/software/projects/OSWPN/boards/1)
10+
- [Trello](https://trello.com/b/veJvIgaq/modern-stack-web-portfolio)
411

512
#### Monorepo for
613

@@ -20,11 +27,15 @@ clone the [mono-repo](https://github.com/korfuri/awesome-monorepo) [`modern-stac
2027

2128
```
2229
git clone --recursive git@github.com:aretecode/modern-stack-web-portfolio.git
30+
cd modern-stack-web-portfolio
31+
git submodule foreach git checkout master
2332
```
2433

2534
![](https://noccumpr-cdn.sirv.com/documentation/Screen%20Shot%202019-04-19%20at%2011.24.43%20PM.png)
2635

27-
> if you are facing with clone, you may not have SSH key configured with your GitHub account, [follow these steps to configure yours in a few seconds](https://www.testingexcellence.com/install-git-mac-generate-ssh-keys/). Once installed, do the cloning step again.
36+
> if you are facing with clone, you may not have SSH key configured with your GitHub account, [follow these steps to configure yours in a few seconds](https://www.testingexcellence.com/install-git-mac-generate-ssh-keys/). Once installed, do the cloning step again.
37+
38+
> the submodule checkout master command is because each submodule is pointed to a specific commit, so running this command will point them to master, after which they can be used the same way any other repo is used (_pulling, merging, committing..._)
2839
2940
## Yarn Install
3041

@@ -51,7 +62,7 @@ cd packages/client
5162
yarn dev
5263
```
5364

54-
Then, open `http://localhost/3000`
65+
Then, open [http://localhost:3000](http://localhost:3000)
5566

5667
#### 2. graphql:
5768

@@ -60,7 +71,7 @@ cd packages/graphql
6071
yarn dev
6172
```
6273

63-
Then, open `http://localhost/4000/graphql`
74+
Then, open [http://localhost:4000/graphql](http://localhost:4000/graphql)
6475

6576
## Setup the data
6677

@@ -70,7 +81,7 @@ After you running the build, you won't see any data.
7081

7182
To see the content, we need to set it ourselves:
7283

73-
1. open `http://localhost/4000`
84+
1. open [http://localhost:4000/graphql](http://localhost:4000/graphql)
7485

7586
![](https://noccumpr-cdn.sirv.com/documentation/Screen%20Shot%202019-04-20%20at%2012.05.57%20AM.png?h=300)
7687

@@ -84,11 +95,15 @@ mutation SetResume($basics: BasicsInputType, $work: [WorkInputType]) {
8495
}
8596
```
8697

87-
![](https://noccumpr-cdn.sirv.com/documentation/Screen%20Shot%202019-04-20%20at%2012.06.35%20AM.png?h=300)
98+
![](https://noccumpr-cdn.sirv.com/documentation/Screen%20Shot%202019-04-20%20at%2012.06.35%20AM.png?h=300)
99+
100+
3. open the `Query Variables`
101+
102+
![](https://noccumpr-cdn.sirv.com/documentation/Screen%20Shot%202019-04-20%20at%2012.06.58%20AM.png?h=300)
88103

89-
3. open the `Query Variables` ![](https://noccumpr-cdn.sirv.com/documentation/Screen%20Shot%202019-04-20%20at%2012.06.58%20AM.png&h=300)
104+
4. add your JSON to the `Query Variables`. [Example data can be found in this gist](https://gist.githubusercontent.com/aretecode/7da7359d3cb0e085e81822c1822d3d08/raw/331a29f90f7eb6315ae9c51c0e9df36bd6871fbd/example.json)
90105

91-
4. add your JSON to the `Query Variables`. [Example data can be found in this gist](https://gist.github.com/aretecode/7da7359d3cb0e085e81822c1822d3d08) ![https://noccumpr-cdn.sirv.com/documentation/Screen%20Shot%202019-04-20%20at%2012.07.41%20AM.png]
106+
![](https://noccumpr-cdn.sirv.com/documentation/Screen%20Shot%202019-04-20%20at%2012.07.41%20AM.png?h=300)
92107

93108
5. click the play/`(>)` button to run it
94109

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
],
1010
"resolutions": {
1111
"webpack": "4.30.0",
12+
"grpc": "1.20.2",
1213
"@babel/core": "7.4.4",
1314
"@babel/plugin-proposal-class-properties": "^7.4.4",
1415
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",

0 commit comments

Comments
 (0)