Update README.md

This commit is contained in:
Dima yawaflua
2023-12-20 09:54:23 +03:00
committed by GitHub
parent a1d06708f0
commit 8a879b69f0

View File

@@ -1,10 +1,47 @@
# Hello, there!
This is my custom redirector, used in my profile, with url: [yaflay.ru](https://yaflay.ru/)
This is my custom site, with url: [yawaflua.ru](https://yawaflua.ru/)
Used frameworks: Asp.Net, Razor
Used frameworks: Asp.Net, Razor, jQuery
Thanks for the help to @Mih4n!
Thanks for the help to [@Mih4n](https://github.com/Mih4n)!
If you wanna help me, create Issue or Pull request.
![Docker release](https://img.shields.io/docker/v/yaflay/yaflay.ru/latest?style=for-the-badge&logo=docker&color=%235865F2)
# How to start?
You should to use this command for download this package from ghcr:
```cli
docker pull ghcr.io/yawaflua/yaflay.ru:master
```
After that create docker-compose file, for example:
```yml
version: "3.9"
services:
site:
image: ghcr.io/yawaflua/yaflay.ru:master
environment:
PSQL_HOST: example.com
PSQL_USER: root
PSQL_DATABASE: MySite
PSQL_PASSWORD: root
REDIRECTURL: https://example.com/authorize
CLIENTSECRET: aAbBcCdD123123
CLIENTID: 1111111111111111111
```
For normal work this site need to give psql data to docker environ, or appsettings.json, if you download this project from github manually
Example data for appsettings.json:
```json
{
"DetailedErrors": true,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"clientId": "111111111111",
"clientSecret": "aAbBcCdD",
"redirectUrl": "https://example.com/authorize"
}
```