Skip to content

Commit

Permalink
2.3.0.0 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
bubuntoid authored Dec 17, 2022
1 parent 42b5c84 commit 0c4a2b5
Show file tree
Hide file tree
Showing 55 changed files with 29,926 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-n-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['5.0.x']
dotnet-version: ['6.0.x']

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ Ensure that you have new line after each time code.
* yt-dlp 2021.10.22

## Backend
test server endpoint: http://81.177.135.200:322 </br>
swagger: http://81.177.135.200:322/swagger/index.html </br>
hangfire dashboard: http://81.177.135.200:322/hangfire
working app: http://81.177.135.200 </br>
test server endpoint: http://81.177.135.200/api </br>
swagger: http://81.177.135.200/swagger/index.html </br>
hangfire dashboard: http://81.177.135.200/hangfire

```
$ chmod +x scripts/run.sh
Expand Down Expand Up @@ -78,3 +79,12 @@ Specify path to FFMPEG/yt-dlp executables in **appsetings.json**:
"YouTubeProvider": "yt-dlp"
},
```

## Development
### Updating frontend version

1. do frontend changes in angular project
1. ```cd frontend```
1. ```export NODE_OPTIONS=--openssl-legacy-provider```
1. ```ng build --watch```
1. ```cp -r "./dist/." "../src/Ethereal.WebAPI/Frontend"```
17 changes: 17 additions & 0 deletions frontend/.browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
# For additional information regarding the format and rule options, please see:
# https://github.com/browserslist/browserslist#queries

# For the full list of supported browsers by the Angular framework, please see:
# https://angular.io/guide/browser-support

# You can see what browsers were selected by your queries by running:
# npx browserslist

last 1 Chrome version
last 1 Firefox version
last 2 Edge major versions
last 2 Safari major versions
last 2 iOS major versions
Firefox ESR
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.
16 changes: 16 additions & 0 deletions frontend/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
45 changes: 45 additions & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db
Loading

0 comments on commit 0c4a2b5

Please sign in to comment.