Skip to content

Commit

Permalink
Initial commit for Dev Center
Browse files Browse the repository at this point in the history
  • Loading branch information
jelveh committed Jul 8, 2024
1 parent af083b0 commit f2b551d
Show file tree
Hide file tree
Showing 31 changed files with 4,757 additions and 4 deletions.
5 changes: 1 addition & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

661 changes: 661 additions & 0 deletions src/dev-center/LICENSE.txt

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions src/dev-center/README.md
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.
54 changes: 54 additions & 0 deletions src/dev-center/coming-soon.html
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>
Loading

0 comments on commit f2b551d

Please sign in to comment.