Skip to content

Commit 623f4e6

Browse files
author
Sashko Stubailo
committed
Move files into process dir
1 parent d408178 commit 623f4e6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

devlog.md renamed to process/devlog.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ See the code in this commit: https://github.com/apollostack/GitHunt/commit/5f5ad
207207

208208
Now, I have a mocked version of my schema going, after some syntax errors like writing `Number` instead of `Int` in my sketch above. The default mocking just uses `"Hello world!"` for every string so it's not that exciting, but at least it means the server is running properly and the schema is being loaded!
209209

210-
![Basic graphiql!](screenshots/default-mock.png)
210+
![Basic graphiql!](../screenshots/default-mock.png)
211211

212212
Now there's a decision to make - should we write a mocked backend and then implement the UI, or wire up the actual backend right now?
213213

@@ -253,7 +253,7 @@ Let's implement a simple model layer over our connector - this is going to be th
253253
254254
Alright, we've got the GitHub API going!
255255

256-
![GitHub API!](screenshots/github-api.png)
256+
![GitHub API!](../screenshots/github-api.png)
257257

258258
Next stop is implementing the SQL connector/models, so that we can actually insert some entries into our database.
259259

@@ -331,11 +331,11 @@ I learned about the `concurrently` NPM module from the Angular 2 getting started
331331

332332
OK, after fiddling around with a bunch of stuff we now have a basic UI, and no surprises yet!
333333

334-
![Basic UI screenshot](screenshots/first-ui.png)
334+
![Basic UI screenshot](../screenshots/first-ui.png)
335335

336336
It's a scientific fact that everything is more exciting with images!
337337

338-
![UI screenshot with avatars](screenshots/avatars.png)
338+
![UI screenshot with avatars](../screenshots/avatars.png)
339339

340340
### Day 6: Implement GitHub login
341341

@@ -394,7 +394,7 @@ Hopefully we can optimize all of this stuff later; for now I'm just going to bui
394394

395395
OK, I implemented the first mutation. The code is absolutely horrible, but it works!
396396

397-
![First mutation](screenshots/first-mutation.png)
397+
![First mutation](../screenshots/first-mutation.png)
398398

399399
Now let's integrate it into the UI. Fortunately we can start by just copying that into our JS code.
400400

@@ -404,11 +404,11 @@ Now let's integrate it into the UI. Fortunately we can start by just copying tha
404404

405405
> NOTE: It's hard to identify network or GraphQL errors when using react-apollo. It's not that hard to look into the network tab, but I get something like this:
406406
407-
![Useless stack trace](screenshots/error-stack.png)
407+
![Useless stack trace](../screenshots/error-stack.png)
408408

409409
> When what I really want is this:
410410
411-
![Useful error from network tab](screenshots/useful-error.png)
411+
![Useful error from network tab](../screenshots/useful-error.png)
412412

413413
Alright, let's add some routing to our app. As we mentioned before, we want at least three different routes:
414414

File renamed without changes.

0 commit comments

Comments
 (0)