Skip to content

Commit

Permalink
🏗️ (system): Added elctron boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
chef-danny-d committed Oct 6, 2021
1 parent a6eb7e6 commit 0c02386
Show file tree
Hide file tree
Showing 37 changed files with 21,796 additions and 1,806 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/node_modules
/src/assets
/old/assets
.cache
/dist
.DS_Store
Expand Down
24 changes: 24 additions & 0 deletions app/app.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Electron Boilerplate</title>
</head>
<body>
<div id="app" class="container" style="display: none;">
<h1 id="greet"></h1>
<p>
Welcome to
<a href="https://www.electronjs.org/" class="electron-website-link">
Electron
</a>
app running on this <strong id="os"></strong> machine.
</p>
<p>App author: <strong id="author"></strong></p>
<p>Environment: <strong id="env"></strong></p>
<p>Electron version: <strong id="electron-version"></strong></p>
</div>

<script src="app.js"></script>
</body>
</html>
849 changes: 849 additions & 0 deletions app/app.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/app.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 0c02386

Please sign in to comment.