File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,41 @@ Visit `http://localhost:5005` in your browser. The app should be up & running.
223
223
224
224
<br />
225
225
226
+ ### [ Heroku] ( https://www.heroku.com/ )
227
+ ---
228
+
229
+ Steps to deploy on ** Heroku**
230
+
231
+ - [ Create a FREE account] ( https://signup.heroku.com/ ) on Heroku platform
232
+ - [ Install the Heroku CLI] ( https://devcenter.heroku.com/articles/getting-started-with-python#set-up ) that match your OS: Mac, Unix or Windows
233
+ - Open a terminal window and authenticate via ` heroku login ` command
234
+ - Clone the sources and push the project for LIVE deployment
235
+
236
+ ``` bash
237
+ $ # Clone the source code:
238
+ $ git clone https://github.com/app-generator/flask-dashboard-coreui.git
239
+ $ cd flask-dashboard-coreui
240
+ $
241
+ $ # Check Heroku CLI is installed
242
+ $ heroku -v
243
+ heroku/7.25.0 win32-x64 node-v12.13.0 # <-- All good
244
+ $
245
+ $ # Check Heroku CLI is installed
246
+ $ heroku login
247
+ $ # this commaond will open a browser window - click the login button (in browser)
248
+ $
249
+ $ # Create the Heroku project
250
+ $ heroku create
251
+ $
252
+ $ # Trigger the LIVE deploy
253
+ $ git push heroku master
254
+ $
255
+ $ # Open the LIVE app in browser
256
+ $ heroku open
257
+ ```
258
+
259
+ <br />
260
+
226
261
### [ Gunicorn] ( https://gunicorn.org/ )
227
262
---
228
263
You can’t perform that action at this time.
0 commit comments