Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bbonkr/sample.file.share


https://github.com/bbonkr/sample.file.share

Last synced: 25 days ago
JSON representation

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
```