You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The unit tests require [Azurite Azure Storage Emulator](https://github.com/Azure/Azurite) in order to run.
89
+
The unit tests require [Azurite Azure Storage Emulator](https://github.com/Azure/Azurite)and [s3rver](https://github.com/jamhall/s3rver)in order to run.
90
90
91
91
On Windows to install and run the server as a background process run the following command
92
92
93
93
```bash
94
94
npm install -g azurite
95
95
start /B azurite --loose
96
+
97
+
npm install -g s3rver
98
+
start /B s3rver -d .
96
99
```
97
100
98
101
On Linux
99
102
100
103
```bash
101
104
sudo npm install -g azurite
102
105
sudo azurite --loose &
106
+
107
+
sudo npm install -g s3rver
108
+
sudo s3rver -d .&
103
109
```
104
110
105
111
## How can you help?
@@ -112,4 +118,4 @@ Please... Spread the word, contribute algorithms, submit performance improvement
0 commit comments