-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
31 changed files
with
4,757 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<p align="center"> | ||
<img src="https://github.com/HeyPuter/dev-center/assets/1715019/37ef2e5d-a685-4381-92da-8a4e18378b09" align="center" width="80" height="80"> | ||
</p> | ||
|
||
<h3 align="center">Dev Center</h3> | ||
<p align="center">The easiest way to publish and manage web apps.</p> | ||
|
||
<p align="center"> | ||
<a href="https://puter.com/app/dev-center"><strong>« LIVE DEMO »</strong></a> | ||
<br /> | ||
<br /> | ||
<a href="https://puter.com">Puter.com</a> | ||
· | ||
<a href="https://docs.puter.com" target="_blank">SDK</a> | ||
· | ||
<a href="https://discord.com/invite/PQcx7Teh8u">Discord</a> | ||
· | ||
<a href="https://reddit.com/r/puter">Reddit</a> | ||
· | ||
<a href="https://twitter.com/HeyPuter">X (Twitter)</a> | ||
· | ||
<a href="https://hackerone.com/puter_h1b">Bug Bounty</a> | ||
</p> | ||
|
||
|
||
<h3 align="center"><img width="700" alt="Screenshot 2024-07-07 at 5 29 24 PM" src="https://github.com/HeyPuter/dev-center/assets/1715019/0c798e49-7727-46f3-ad7e-3d7f183641be"></h3> | ||
|
||
<br> | ||
|
||
|
||
## Dev Center | ||
|
||
Dev Center is a Puter app that allows you to publish and manage web apps. It is built with Puter SDK and is available on [Puter.com](https://puter.com/app/dev-center) as well as [the self-hosted Puter](https://github.com/heyPuter/puter/). | ||
|
||
<br> | ||
|
||
## License | ||
|
||
Dev Center is licensed under the [AGPL-3.0 license](./LICENSE.txt). | ||
|
||
|
||
<br> | ||
|
||
## Icons | ||
|
||
[jolloficons](https://github.com/gbmillz/jolloficons) under MIT license. | ||
|
||
[Credit Card & Payment Icons](https://github.com/aaronfagan/svg-credit-card-payment-icons) under Apache-2.0 license. | ||
|
||
[Bootstrap Icons](https://icons.getbootstrap.com/) under MIT license. | ||
|
||
[svg-spinners](https://github.com/n3r4zzurr0/svg-spinners) under MIT license. |
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,54 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title></title> | ||
<link href="./css/normalize.css" rel="stylesheet" /> | ||
<style> | ||
* { | ||
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
html { | ||
width: 100vw; | ||
height: 100vh; | ||
background-color: #eff1f5 | ||
} | ||
|
||
body{ | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100vw; | ||
height: 100vh; | ||
} | ||
h1{ | ||
font-weight: 300; | ||
font-size: 35px; font-size: 40px; | ||
color: #555c6c; | ||
} | ||
.dev-c2a{ | ||
padding: 14px; | ||
border: 1px solid #d0d5de; | ||
border-radius: 4px; | ||
font-size: 14px; color: #414a5c; | ||
} | ||
.go-to-dev-center{ | ||
color: #007aff; | ||
text-decoration: none; | ||
} | ||
.go-to-dev-center:hover{ | ||
text-decoration: underline; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
|
||
<h1>Coming Soon!</h1> | ||
<p class="dev-c2a">Are you the developer of this app? Please deploy via <a class="go-to-dev-center" href="https://puter.com/app/dev-center" target="_blank">Dev Center</a>.</p> | ||
</body> | ||
</html> |
Oops, something went wrong.