From 20134114001c529ea474bcd6ffc3988fb87266e0 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Tue, 3 Oct 2017 05:23:18 +0300 Subject: [PATCH] _examples/tutorial/dropzonejs. Stay tuned for two-parts article series on https://medium.com/@kataras and https://dev.to/@kataras tried to fix `README_NEXT.MD` to `README_NEXT.md` but suffix is not recognised by git so rename README_NEXT.MD to README_PART2.md. I'll write two articles based on that content you can see already (because you follow the Iris project in github) Former-commit-id: 48bb828909a9bd72939a6de3ee325d15dbb9f88b --- README.md | 1 + _examples/README.md | 1 + _examples/tutorial/dropzonejs/README.md | 2 +- .../tutorial/dropzonejs/{README_NEXT.MD => README_PART2.md} | 4 ++-- 4 files changed, 5 insertions(+), 3 deletions(-) rename _examples/tutorial/dropzonejs/{README_NEXT.MD => README_PART2.md} (97%) diff --git a/README.md b/README.md index 630eff8f..c0de568d 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,7 @@ Help this project to continue deliver awesome and unique features with the highe * [Typescript Automation Tools](typescript/#table-of-contents) * [Tutorial: Online Visitors](_examples/tutorial/online-visitors) * [Tutorial: Caddy](_examples/tutorial/caddy) + * [Tutorial: DropzoneJS Uploader](_examples/tutorial/dropzonejs) * [Middleware](middleware/) * [Dockerize](https://github.com/iris-contrib/cloud-native-go) * [Community & Support](#-community) diff --git a/_examples/README.md b/_examples/README.md index 79a3e49b..2cd56511 100644 --- a/_examples/README.md +++ b/_examples/README.md @@ -15,6 +15,7 @@ It doesn't always contain the "best ways" but it does cover each important featu - [Tutorial: How to turn your Android Device into a fully featured Web Server (**MUST**)](https://twitter.com/ThePracticalDev/status/892022594031017988) - [POC: Convert the medium-sized project "Parrot" from native to Iris](https://github.com/iris-contrib/parrot) - [POC: Isomorphic react/hot reloadable/redux/css-modules starter kit](https://github.com/kataras/iris-starter-kit) +- [Tutorial: DropzoneJS Uploader](tutorial/dropzonejs) ### Structuring diff --git a/_examples/tutorial/dropzonejs/README.md b/_examples/tutorial/dropzonejs/README.md index b296a3b8..3000986a 100644 --- a/_examples/tutorial/dropzonejs/README.md +++ b/_examples/tutorial/dropzonejs/README.md @@ -1,7 +1,7 @@ This is the part 1 of 2 in DropzoneJS + Go series. - [Part 1: How to build a file upload form](README.md) -- [Part 2: How to display existing files on server](README_NEXT.md) +- [Part 2: How to display existing files on server](README_PART2.md) # DropzoneJS + Go: How to build a file upload form diff --git a/_examples/tutorial/dropzonejs/README_NEXT.MD b/_examples/tutorial/dropzonejs/README_PART2.md similarity index 97% rename from _examples/tutorial/dropzonejs/README_NEXT.MD rename to _examples/tutorial/dropzonejs/README_PART2.md index a28eb823..a79ca5c4 100644 --- a/_examples/tutorial/dropzonejs/README_NEXT.MD +++ b/_examples/tutorial/dropzonejs/README_PART2.md @@ -1,7 +1,7 @@ This is the part 2 of 2 in DropzoneJS + Go series. - [Part 1: How to build a file upload form](README.md) -- [Part 2: How to display existing files on server](README_NEXT.md) +- [Part 2: How to display existing files on server](README_PART2.md) # DropzoneJS + Go: How to display existing files on server @@ -17,7 +17,7 @@ In this tutorial, we will show you how to display existing files on the server w ## Preparation -Install the go package "nfnt/resize" with `go get github.com/nfnt/resize`, we need it to create thumbnails. +Install the go package "github.com/nfnt/resize" with `go get github.com/nfnt/resize`, we need it to create thumbnails. In previous [tutorial](README.md). We have already set up a proper working DropzoneJs upload form. There is no additional file needed for this tutorial. What we need to do is to make some modifications to file below: