@@ -20,6 +20,117 @@ Waffle is a flexible file upload library for Elixir with straightforward integra
20
20
21
21
[ Documentation] ( https://hexdocs.pm/waffle )
22
22
23
+ ## Installation
24
+
25
+ Add the latest stable release to your ` mix.exs ` file, along with the
26
+ required dependencies for ` ExAws ` if appropriate:
27
+
28
+ ``` elixir
29
+ defp deps do
30
+ [
31
+ {:waffle , " ~> 1.1" },
32
+
33
+ # If using S3:
34
+ {:ex_aws , " ~> 2.1.2" },
35
+ {:ex_aws_s3 , " ~> 2.0" },
36
+ {:hackney , " ~> 1.9" },
37
+ {:sweet_xml , " ~> 0.6" }
38
+ ]
39
+ end
40
+ ```
41
+
42
+ Then run ` mix deps.get ` in your shell to fetch the dependencies.
43
+
44
+ ## Usage
45
+
46
+ After installing Waffle, another two things should be done:
47
+
48
+ 1 . setup a storage provider
49
+ 2 . define a definition module
50
+
51
+ ### Setup a storage provider
52
+
53
+ Waffle has two built-in storage providers:
54
+
55
+ * ` Waffle.Storage.Local `
56
+ * ` Waffle.Storage.S3 `
57
+
58
+ [ Other available storage providers] ( #other-storage-providers )
59
+ are supported by the community.
60
+
61
+ An example for setting up ` Waffle.Storage.Local ` :
62
+
63
+ ``` elixir
64
+ config :waffle ,
65
+ storage: Waffle .Storage .Local ,
66
+ asset_host: " http://static.example.com" # or {:system, "ASSET_HOST"}
67
+ ```
68
+
69
+ An example for setting up ` Waffle.Storage.S3 ` :
70
+
71
+ ``` elixir
72
+ config :waffle ,
73
+ storage: Waffle .Storage .S3 ,
74
+ bucket: " custom_bucket" , # or {:system, "AWS_S3_BUCKET"}
75
+ asset_host: " http://static.example.com" # or {:system, "ASSET_HOST"}
76
+
77
+ config :ex_aws ,
78
+ json_codec: Jason
79
+ # any configurations provided by https://github.com/ex-aws/ex_aws
80
+ ```
81
+
82
+ ### Define a definition module
83
+
84
+ Waffle requires a ** definition module** which contains the relevant
85
+ functions to store and retrieve files:
86
+
87
+ * Optional transformations of the uploaded file
88
+ * Where to put your files (the storage directory)
89
+ * How to name your files
90
+ * How to secure your files (private? Or publicly accessible?)
91
+ * Default placeholders
92
+
93
+ This module can be created manually or generated by ` mix waffle.g `
94
+ automatically.
95
+
96
+ As an example, we will generate a definition module for handling
97
+ avatars:
98
+
99
+ mix waffle.g avatar
100
+
101
+ This should generate a file at ` lib/[APP_NAME]_web/uploaders/avatar.ex ` .
102
+ Check this file for descriptions of configurable options.
103
+
104
+ ## Examples
105
+
106
+ * [ An example for Local storage driver] ( documentation/examples/local.md )
107
+ * [ An example for S3 storage driver] ( documentation/examples/s3.md )
108
+
109
+ ## Usage with Ecto
110
+
111
+ Waffle comes with a companion package for use with Ecto. If you
112
+ intend to use Waffle with Ecto, it is highly recommended you also
113
+ add the
114
+ [ ` waffle_ecto ` ] ( https://github.com/elixir-waffle/waffle_ecto )
115
+ dependency. Benefits include:
116
+
117
+ * Changeset integration
118
+ * Versioned urls for cache busting (` .../thumb.png?v=63601457477 ` )
119
+
120
+ ## Other Storage Providers
121
+
122
+ * ** Rackspace** - [ arc_rackspace] ( https://github.com/lokalebasen/arc_rackspace )
123
+
124
+ * ** Manta** - [ arc_manta] ( https://github.com/onyxrev/arc_manta )
125
+
126
+ * ** OVH** - [ arc_ovh] ( https://github.com/stephenmoloney/arc_ovh )
127
+
128
+ * ** Google Cloud Storage** - [ waffle_gcs] ( https://github.com/kolorahl/waffle_gcs )
129
+
130
+ * ** Microsoft Azure Storage** - [ arc_azure] ( https://github.com/phil-a/arc_azure )
131
+
132
+ * ** Aliyun OSS Storage** - [ waffle_aliyun_oss] ( https://github.com/ug0/waffle_aliyun_oss )
133
+
23
134
## Attribution
24
135
25
136
Great thanks to Sean Stavropoulos (@stavro ) for the original awesome work on the library.
0 commit comments