️ Implement personal drive (#61)

* Implement personal drive

* Fix tests

* Add my-drive tests

* Fixing tests

* Fixing tests

* Fix tests
This commit is contained in:
Romaric Mourgues
2023-05-30 11:15:43 +02:00
committed by GitHub
parent 02ccb279f7
commit 5e655996c7
9 changed files with 591 additions and 388 deletions
+3 -3
View File
@@ -3,9 +3,9 @@
## Run it in development mode
1. Launch mongo using `docker run -p 27017:27017 -d mongo`
2. Launch frontend with `cd twake/frontend/; HTTPS=true yarn dev:start`
3. Launch backend with `cd twake/backend/node/; SEARCH_DRIVER=mongodb DB_DRIVER=mongodb PUBSUB_TYPE=local DB_MONGO_URI=mongodb://localhost:27017 STORAGE_LOCAL_PATH=/[full-path-to-store-documents]/documents NODE_ENV=development yarn dev`
4. If you need more parameters, create/edit `twake/backend/node/config/development.json` file
2. Launch frontend with `cd tdrive/frontend/; yarn dev:start`
3. Launch backend with `cd tdrive/backend/node/; SEARCH_DRIVER=mongodb DB_DRIVER=mongodb PUBSUB_TYPE=local DB_MONGO_URI=mongodb://localhost:27017 STORAGE_LOCAL_PATH=/[full-path-to-store-documents]/documents NODE_ENV=development yarn dev`
4. If you need more parameters, create/edit `tdrive/backend/node/config/development.json` file
App will be running on port 3000.