Skip to content

Commit

Permalink
(chore): Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianmiranda committed Jul 25, 2018
0 parents commit 1c31201
Show file tree
Hide file tree
Showing 14 changed files with 5,200 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"es2015"
]
}
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.DS_Store
*.log
dist
node_modules
Thumbs.db
.idea
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Netflix Desktop

![Netflix Desktop](https://github.com/cristianmiranda/netflix-app/blob/master/app_screenshot.png?raw=true)

![Netflix Desktop Icon](https://github.com/cristianmiranda/netflix-app/blob/master/app_icon.png?raw=true)

## Extend it yourself!

Run the following commands to install, build and start the app:

```sh
$ npm install
$ npm start
```

Run the following command to create an app for macOS:

```sh
$ npm run package
$ mv ./dist/Netflix-darwin-x64/Netflix.app /Applications
```
Binary file added app_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app_screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions bootstrap.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* Require modules
*/
const path = require('path');
const init = require('electron-compile').init;


/**
* Define app root
*/
const appRoot = path.join(__dirname);


/**
* Initiate compiler
*/
init(appRoot, './src/main');
Loading

0 comments on commit 1c31201

Please sign in to comment.