This website works better with JavaScript.
Home
Explore
Help
Sign In
Autoplex
/
autoplex-legacy
Watch
1
Star
0
Fork
0
Code
Issues
1
Pull Requests
0
Projects
0
Releases
1
Wiki
Activity
Browse Source
Add request module. Update torrent client
staging
David Ludwig
4 years ago
parent
46b8d4d17a
commit
5d5b954ffc
7 changed files
with
35 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
.gitmodules
+1
-0
database/init/01-databases.sql
+10
-0
docker-compose.dev.yml
+18
-0
docker-compose.yml
+1
-0
request
+1
-1
torrent-client
+1
-1
torrent-webui
+ 3
- 0
.gitmodules
View File
@ -4,3 +4,6 @@
[submodule "torrent-webui"]
path = torrent-webui
url = ssh://git@git.dlii.tech:222/Autoplex/torrent-webui.git
[submodule "request"]
path = request
url = ssh://git@git.dlii.tech:222/Autoplex/request.git
+ 1
- 0
database/init/01-databases.sql
View File
@ -1 +1,2 @@
CREATE
DATABASE
IF
NOT
EXISTS
`
autoplex_request
`
;
CREATE
DATABASE
IF
NOT
EXISTS
`
autoplex_torrent
`
;
+ 10
- 0
docker-compose.dev.yml
View File
@ -1,6 +1,16 @@
version
:
"3.9"
services:
request:
build:
target
:
base
ports:
-
3001
:
3001
volumes:
-
./request:/app
entrypoint
:
"/bin/sh"
tty
:
true
torrent_webui:
build:
target
:
base
+ 18
- 0
docker-compose.yml
View File
@ -1,6 +1,24 @@
version
:
"3.9"
services:
request:
build:
context
:
./request
depends_on:
-
"database"
-
"torrent_client"
env_file:
-
./request/.env
links:
-
"database"
-
"torrent_client"
ports:
-
3200
:
3200
secrets:
-
mysql_root_password
volumes:
-
tmp:/tmp
torrent_webui:
build:
context
:
./torrent-webui
+ 1
- 0
request
@ -0,0 +1 @@
Subproject commit 560ffe89f3534cc3bc47e19644307e76b8822b51
+ 1
- 1
torrent-client
@ -1 +1 @@
Subproject commit
beed0eb7ac49f4d63bb1e35cc7ca3fa4dc777d5a
Subproject commit
eaf2fa3e9e70beec7475ef5724a55f9a1ba174d8
+ 1
- 1
torrent-webui
@ -1 +1 @@
Subproject commit
ba75b0ff45d47062ddb4308e7459a83008093c80
Subproject commit
a4e0f1fb6c7f57b0bcf0ced049df5825bee8fae5
Write
Preview
Loading…
Cancel
Save