From e97bf48a99261ad60632a99734a1ebfeeb076949 Mon Sep 17 00:00:00 2001 From: segmentationfaulter Date: Fri, 5 Oct 2018 14:03:08 +0500 Subject: [PATCH 1/7] Remove followers count Since the API does not return count of followers for a profile, it should be removed from the templates provided here. You can see the profile object here in the API spec: https://github.com/gothinkster/realworld/tree/master/api#profile --- FRONTEND_INSTRUCTIONS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FRONTEND_INSTRUCTIONS.md b/FRONTEND_INSTRUCTIONS.md index c09084c84f..de680bc8a6 100644 --- a/FRONTEND_INSTRUCTIONS.md +++ b/FRONTEND_INSTRUCTIONS.md @@ -460,7 +460,7 @@ Alternatively, if you want to make modifications to the theme, check out the [th   - - -

How to build webapps that scale

-

This is the description for the post.

- Read more... -
- - -
- - -

The song you won't ever stop singing. No matter how hard you try.

-

This is the description for the post.

- Read more... -
-
- - - -
- -
- - - - - -``` - -### Login/Register - -```html -
-
-
- -
-

Sign up

-

- Have an account? -

- -
    -
  • That email is already taken
  • -
- -
-
- -
-
- -
-
- -
- -
-
- -
-
-
-``` - -### Profile - -```html -
- - - - - -
-``` - -### Settings - -```html -
-
-
- -
-

Your Settings

- -
-
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
- -
-
-
-``` - -### Create/Edit Article - -```html -
-
-
- -
-
-
-
- -
-
- -
-
- -
-
-
-
- -
-
-
- -
-
-
- - -``` - -### Article - -```html -
- - - -
- -
-
-

- Web development technologies have evolved at an incredible clip over the past few years. -

-

Introducing RealWorld.

-

It's a great solution for learning how other frameworks work.

-
-
- -
- -
- -
- -
- -
- -
-
- -
- -
- -
-
-

With supporting text below as a natural lead-in to additional content.

-
- -
- -
-
-

With supporting text below as a natural lead-in to additional content.

-
- -
- -
- -
- -
- -
-``` diff --git a/MOBILE_INSTRUCTIONS.md b/MOBILE_INSTRUCTIONS.md deleted file mode 100644 index 46fac29669..0000000000 --- a/MOBILE_INSTRUCTIONS.md +++ /dev/null @@ -1,13 +0,0 @@ -> *Note: Delete this file before publishing your app!* - -# [Mobile Icons (iOS/Android)](https://github.com/gothinkster/realworld/tree/master/spec/mobile_icons) - -### Using the hosted API - -Simply point your [API requests](https://github.com/gothinkster/realworld/tree/master/api) to `https://conduit.productionready.io/api` and you're good to go! - -### Styles/Templates - -Unfortunately, there isn't a common way for us to reuse & share styles/templates for cross-platform mobile apps. - -Instead, we recommend using the Medium.com [iOS](https://itunes.apple.com/us/app/medium/id828256236?mt=8) and [Android](https://play.google.com/store/apps/details?id=com.medium.reader&hl=en) apps as a "north star" regarding general UI functionality/layout, but try not to go too overboard otherwise it will unnecessarily complicate your codebase (in other words, [KISS](https://en.wikipedia.org/wiki/KISS_principle) :) diff --git a/readme.md b/README.md similarity index 100% rename from readme.md rename to README.md From c73c995b89538e6953f94e918eaa1c3c0f707814 Mon Sep 17 00:00:00 2001 From: geromegrignon Date: Sat, 2 Oct 2021 10:30:19 +0200 Subject: [PATCH 6/7] chore: update gitignore ignore more IDE generated config files ignore package manager log files --- .gitignore | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2725c8d592..19f908da89 100644 --- a/.gitignore +++ b/.gitignore @@ -2,16 +2,32 @@ # dependencies /node_modules -/bower_components +/dist # IDEs and editors /.idea .project .classpath +.c9/ *.launch .settings/ +*.sublime-workspace + +# IDE - VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +.history/* #System Files .DS_Store Thumbs.db + + +#log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* From 51ed7c0456397c452a3a4ff67d7e343c8da419eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9r=C3=B4me=20Grignon?= <32737308+geromegrignon@users.noreply.github.com> Date: Mon, 11 Oct 2021 11:50:33 +0200 Subject: [PATCH 7/7] fix: change demo URL link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ae38a327e..7e107ce07e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ > ### [YOUR_FRAMEWORK] codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API. -### [Demo](https://github.com/gothinkster/realworld)    [RealWorld](https://github.com/gothinkster/realworld) +### [Demo](https://demo.realworld.io/)    [RealWorld](https://github.com/gothinkster/realworld) This codebase was created to demonstrate a fully fledged fullstack application built with **[YOUR_FRAMEWORK]** including CRUD operations, authentication, routing, pagination, and more.