Skip to content

Commit 09022f0

Browse files
README - Added HEROKU build
1 parent 783a133 commit 09022f0

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,41 @@ Visit `http://localhost:5005` in your browser. The app should be up & running.
223223

224224
<br />
225225

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+
226261
### [Gunicorn](https://gunicorn.org/)
227262
---
228263

0 commit comments

Comments
 (0)