-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from StarfilesFileSharing/alpha
Alpha
- Loading branch information
Showing
6 changed files
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
deno-version: v2.x | ||
|
||
- name: Install Dependencies | ||
run: deno install --allow-scripts=npm:[email protected],npm:[email protected],npm:[email protected],npm:[email protected],npm:[email protected] | ||
run: deno install --allow-scripts=npm:[email protected],npm:[email protected],npm:[email protected],npm:[email protected] | ||
|
||
- name: Compile for linux-x86_64 | ||
run: deno run build-linux-x86_64 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM node:18 | ||
WORKDIR /app | ||
COPY . . | ||
RUN deno install --allow-scripts=npm:[email protected],npm:[email protected],npm:[email protected],npm:[email protected],npm:[email protected] | ||
RUN deno install --allow-scripts=npm:[email protected],npm:[email protected],npm:[email protected],npm:[email protected] | ||
RUN build | ||
EXPOSE 80 | ||
CMD ["deno", "task", "start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,8 @@ import { encode as base32Encode } from "https://deno.land/[email protected]/encoding/b | |
import type Hydrafiles from "../hydrafiles.ts"; | ||
// import { BLOCKSDIR } from "./block.ts"; | ||
import File from "../file.ts"; | ||
import Utils from "../utils.ts"; | ||
import Utils, { type Base64 } from "../utils.ts"; | ||
import { join } from "https://deno.land/[email protected]/path/mod.ts"; | ||
import type Base64 from "npm:base64"; | ||
import { HTTPPeer } from "./peers/http.ts"; | ||
import { SignallingMessage } from "./peers/rtc.ts"; | ||
import { serveFile } from "https://deno.land/[email protected]/http/file_server.ts"; | ||
|