more final cleanup
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: subnub
|
||||
open_collective: # Replace with a single Open Collective username
|
||||
ko_fi: # Replace with a single Ko-fi username
|
||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
||||
liberapay: # Replace with a single Liberapay username
|
||||
issuehunt: # Replace with a single IssueHunt username
|
||||
otechie: # Replace with a single Otechie username
|
||||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.5 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.5 MiB |
@@ -13,7 +13,7 @@ MyDrive is an Open Source cloud file storage server (Similar To Google Drive). H
|
||||
- [Features](#features)
|
||||
- [Tech stack](#tech-stack)
|
||||
- [Installation (non docker)](#installation)
|
||||
- [Docker](#docker)
|
||||
- [Docker installation](#docker)
|
||||
- [Common installation issues](#common-installation-issues)
|
||||
- [Screenshots](#screenshots)
|
||||
- [Video](#video)
|
||||
@@ -52,6 +52,7 @@ MyDrive is an Open Source cloud file storage server (Similar To Google Drive). H
|
||||
- Express
|
||||
- MongoDB
|
||||
- Vite
|
||||
- Jest
|
||||
|
||||
<span id="installation"></span>
|
||||
|
||||
@@ -82,7 +83,8 @@ npm install
|
||||
> [backend/config](backend/config) -> Backend Enviroment Variables
|
||||
> [src/config](src/config) -> Frontend Enviroment Variables
|
||||
|
||||
> Simply remove the .example from the end of the filename, and fill in the values.
|
||||
> Simply remove the .example from the end of the filename, and fill in the values.
|
||||
> Note: In most cases you will only have to change FE enviroment variables for development purposes.
|
||||
|
||||
<br />
|
||||
|
||||
@@ -144,7 +146,8 @@ Setup:
|
||||
> [backend/config](backend/config) -> Backend Enviroment Variables
|
||||
> [src/config](src/config) -> Frontend Enviroment Variables
|
||||
|
||||
> Simply remove the .example from the end of the filename, and fill in the values.
|
||||
> Simply remove the .example from the end of the filename, and fill in the values.
|
||||
> Note: In most cases you will only have to change FE enviroment variables for development purposes.
|
||||
|
||||
<br />
|
||||
|
||||
@@ -185,6 +188,12 @@ Search For Files/Folders
|
||||
Move File/Folders
|
||||

|
||||
|
||||
Multi-select
|
||||

|
||||
|
||||
Custom context menu
|
||||

|
||||
|
||||
Trash
|
||||

|
||||
|
||||
@@ -202,9 +211,13 @@ I created a short YouTube video, showing off myDrives design and features: (Comi
|
||||
|
||||
Note: Creating, deleting and other features are disabled in the demo. Also the service worker is not enabled in the demo, images thumbnails are not cached because of this.
|
||||
|
||||
Also this is just a 512mb RAM droplet go easy on her.
|
||||
|
||||
<span id="bugs"></span>
|
||||
|
||||
## 👾 Bug reports and Feature Requests
|
||||
## 👾 Bug reports and feature requests
|
||||
|
||||
Please only open issues for actual bugs, feature requests or discussions should happen in Discussions or via my email.
|
||||
|
||||
Contact Email: kyle.hoell@gmail.com
|
||||
|
||||
@@ -235,13 +248,15 @@ npm run create-video-thumbnails
|
||||
#### Issues
|
||||
|
||||
- Video streaming does not always work, especially on Safari.
|
||||
- PWA downloads does not work on iOS.
|
||||
- PWA downloads does not work on iOS (This may be a current iOS limitation and not a myDrive issue).
|
||||
- Upload folder will sometimes fail on complex folder structures.
|
||||
- Generating video thumbnails with the default method will often fail, requiring the whole file to be downloaded to temporary storage and then the thumbnail generated from that.
|
||||
|
||||
#### Future improvments
|
||||
|
||||
- An alternative to using mongoDB
|
||||
- Dark mode
|
||||
- Enhance service worker, currently only caches thumbnails. This includes potentially adding offline support.
|
||||
- Typescript type cleanup
|
||||
- Better error handling
|
||||
- Logging
|
||||
|
||||
@@ -1 +1,11 @@
|
||||
VITE_BACKEND_URL=http://localhost:5173/api
|
||||
# Optional, useful for development or if your BE is on a different domain
|
||||
# Example: http://localhost:5173/api
|
||||
VITE_BACKEND_URL=
|
||||
|
||||
# Optional, this one is only used in development
|
||||
# /api will be appended to this URL, so for example
|
||||
# Here our BE is on localhost:3000, and we are telling
|
||||
# Vite to proxy all requests to /api to our BE
|
||||
# Proxy, and URL will become http://localhost:5173/api in this case.
|
||||
# Example: http://localhost:3000
|
||||
VITE_PROXY_URL=
|
||||
@@ -1 +1,16 @@
|
||||
VITE_BACKEND_URL=http://localhost:5173/api
|
||||
# NOTE: You most likely do not need these unless you running in development mode.
|
||||
|
||||
# Either remove the .example from the end of this filename.
|
||||
# Or create a new file with the same name, but without the .example extension.
|
||||
|
||||
# Optional, useful for development or if your BE is on a different domain
|
||||
# Example: http://localhost:5173/api
|
||||
VITE_BACKEND_URL=
|
||||
|
||||
# Optional, this one is only used in development
|
||||
# /api will be appended to this URL, so for example
|
||||
# Here our BE is on localhost:3000, and we are telling
|
||||
# Vite to proxy all requests to /api to our BE
|
||||
# Proxy, and URL will become http://localhost:5173/api in this case.
|
||||
# Example: http://localhost:3000
|
||||
VITE_PROXY_URL=
|
||||
Reference in New Issue
Block a user