Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bbonkr/sample.file.share
https://github.com/bbonkr/sample.file.share
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bbonkr/sample.file.share
- Owner: bbonkr
- Created: 2021-06-10T03:55:22.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-10T11:00:52.000Z (over 3 years ago)
- Last Synced: 2024-04-09T21:56:09.127Z (7 months ago)
- Language: TypeScript
- Size: 583 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sample.File.Share
Sample project for file sharing.
* Share files with other users.
* Set expiration when file shared.
* Users who receive file sharing will have access until expires.## Run
```bash
$ cd src/Sample.App
$ dotnet run
```## Docker
### Build
```bash
$ docker build . -t your-name/app-name:tag
```### Run
```bash
$ docker run -d \
--name sample_file_share \
-e TZ=Asia/Seoul \
-e ASPNETCORE_ENVIRONMENT=Production \
-e ASPNETCORE_URLS=http://+:5000 \
-e ConnectionStrings__Database= \
-e ConnectionStrings__AzureStorageAccount= \
-e App__Title="File Share App" \
-e App__Description="Sample for File sharing" \
your-name/app-name:tag
```