Last active
November 4, 2017 08:54
-
-
Save abdurrahmanekr/557760e4a45ba29224b3b887df449327 to your computer and use it in GitHub Desktop.
Electron React app install
This file contains hidden or 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
git clone https://github.com/abdurrahmanekr/electron-react-example.git | |
cd electron-react-example | |
npm i | |
npm start |
This file contains hidden or 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
… | |
// yayınlayacağınız adres | |
appUrl: 'http://download.example.com', | |
auth: { | |
// electron uygulamalarını yükleyeceğiniz admin paneli girişi için kullanıcı adı ve şifre | |
static: { | |
username: 'patron', | |
password: 'şifre' | |
}, | |
… | |
// mysql ve postgresql veritabanı bağlantı ayarları | |
connections: { | |
postgresql: { | |
adapter: 'sails-postgresql', | |
host: 'localhost', | |
user: 'electron_release_server_user', // postgresql için hangi kullanıcınız varsa o | |
password: '<şifreniz>', | |
database: 'electron_release_server' | |
}, | |
mysql: { | |
adapter: 'sails-mysql', | |
host: 'localhost', | |
user: 'root', // mysql için hangi kullanıcınız varsa o | |
password: '<şifreniz>', | |
database: 'electron_release_server' | |
} | |
}, | |
… | |
}; | |
… |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment