-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4,086 changed files
with
10,638 additions
and
4,792 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.git | ||
.gitignore | ||
.travis.yml | ||
appveyor.yml | ||
.vscode | ||
node_modules | ||
dist |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Credits | ||
|
||
## Sounds | ||
* All eyes on me, Exquisite and Appointed are from [Notification Sounds](https://notificationsounds.com/) | ||
* Mastodon Boop is from the [Mastodon Project](https://github.com/tootsuite/mastodon) and made by [@jk@mastodon.social](https://mastodon.social/@jk) |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM node:10-buster-slim AS build | ||
|
||
WORKDIR /build | ||
ADD . /build | ||
|
||
RUN apt update && apt install --yes git binutils | ||
RUN npm install | ||
RUN npm run build | ||
|
||
FROM alpine:latest | ||
|
||
RUN apk add --update --no-cache lighttpd | ||
|
||
ADD lighttpd.conf /etc/lighttpd/lighttpd.conf | ||
COPY --from=build /build/dist /app/sengi | ||
COPY --from=build /build/assets/docker_init /app | ||
|
||
EXPOSE 80 | ||
|
||
ENTRYPOINT ["lighttpd", "-D"] | ||
CMD ["-f", "/etc/lighttpd/lighttpd.conf"] |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE HTML> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link rel="stylesheet" href="main.css"> | ||
<link rel="shortcut icon" type="image/png" href="favicon.png"> | ||
|
||
<title>Sengi Launcher</title> | ||
</head> | ||
|
||
<body> | ||
<div class="launcher-wrapper"> | ||
<div class="launcher"> | ||
<a href="#" class="button" title="launch sengi in popup" | ||
onClick="window.open('/sengi/'+'?qt='+ (new Date()).getTime(),'Sengi','toolbar=no,location=no,status=no,menubar=no,scrollbars=no, resizable=yes,width=377,height=800'); return false;"> | ||
<span class="download-button__web--label">Launch Sengi Popup</span> | ||
</a><br /> | ||
|
||
<a href="/sengi/" class="button" title="launch sengi"> | ||
<span class="download-button__web--label">Open Sengi</span> | ||
</a><br /> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
*, *::after, *::before { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: inherit; | ||
} | ||
|
||
html { | ||
font-size: 62.5%; | ||
background-color: #141824; | ||
font-family: Verdana, Geneva, sans-serif; | ||
} | ||
|
||
body { | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
} | ||
|
||
.launcher-wrapper{ | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
.launcher { | ||
height: 15rem; | ||
width: 30rem; | ||
margin: 35vh auto; | ||
} | ||
|
||
.button { | ||
background-color: #090b10; | ||
display: block; | ||
width: 30rem; | ||
padding: 1.5rem 2rem 1.75rem 2rem; | ||
color: white; | ||
border-radius: 3px; | ||
font-size: 1.8rem; | ||
font-weight: lighter; | ||
text-decoration: none; | ||
transition: all .2s; | ||
} | ||
|
||
.button:hover { | ||
background-color: #1e2433; | ||
} |
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
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
Oops, something went wrong.