All Projects → heroku → Python Getting Started

heroku / Python Getting Started

Getting Started with Python on Heroku.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Python Getting Started

Django Heroku
A Django library for Heroku apps.
Stars: ✭ 428 (-32.81%)
Mutual labels:  heroku
Heroku Accounts
Helps use multiple accounts on Heroku.
Stars: ✭ 482 (-24.33%)
Mutual labels:  heroku
Manet
Website screenshot service powered by Node.js, SlimerJS and PhantomJS
Stars: ✭ 570 (-10.52%)
Mutual labels:  heroku
Notion Toolbox
This is a collection of Notion tools that work in tandem together.
Stars: ✭ 441 (-30.77%)
Mutual labels:  heroku
Scoold
A Stack Overflow clone for teams (self-hosted)
Stars: ✭ 463 (-27.32%)
Mutual labels:  heroku
Passwordpusher
🔐 PasswordPusher is an application to securely communicate passwords over the web. Passwords automatically expire after a certain number of views and/or time has passed.
Stars: ✭ 484 (-24.02%)
Mutual labels:  heroku
Property web builder
The ultimate Ruby on Rails engine for creating real estate websites ⛺
Stars: ✭ 414 (-35.01%)
Mutual labels:  heroku
Heroku Repo
Plugin for heroku CLI that can manipulate the repo
Stars: ✭ 610 (-4.24%)
Mutual labels:  heroku
Pigallery2
A directory-first photo gallery website, witch rich UI, optimised for running on low resource servers (especially on raspberry pi)
Stars: ✭ 470 (-26.22%)
Mutual labels:  heroku
Node Express Mongoose Demo
A simple demo app using node and mongodb for beginners
Stars: ✭ 4,976 (+681.16%)
Mutual labels:  heroku
Dokku
A docker-powered PaaS that helps you build and manage the lifecycle of applications
Stars: ✭ 22,155 (+3378.02%)
Mutual labels:  heroku
Phoenix Chat Example
💬 A Step-by-Step Beginners Tutorial for Building, Testing & Deploying a Chat app in Phoenix 1.5.5 🚀
Stars: ✭ 452 (-29.04%)
Mutual labels:  heroku
Letsencrypt Heroku
Make any Heroku application secure in just a couple of minutes.
Stars: ✭ 530 (-16.8%)
Mutual labels:  heroku
Haikunator
Heroku-like random name generator.
Stars: ✭ 440 (-30.93%)
Mutual labels:  heroku
Heroku san
Helpful stuffs for Heroku.
Stars: ✭ 589 (-7.54%)
Mutual labels:  heroku
Tilex
Today I Learned
Stars: ✭ 418 (-34.38%)
Mutual labels:  heroku
Emoticons Keyboard
A custom keyboard for emoticons for android chatting application
Stars: ✭ 485 (-23.86%)
Mutual labels:  sample-app
Express Babel
Express starter kit with ES2017+ support, testing, linting, and code coverage
Stars: ✭ 621 (-2.51%)
Mutual labels:  heroku
Procodile
🐊 Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)
Stars: ✭ 600 (-5.81%)
Mutual labels:  heroku
Django Project Template
Project template layout for Django 3.0+
Stars: ✭ 530 (-16.8%)
Mutual labels:  heroku

Python: Getting Started

A barebones Django app, which can easily be deployed to Heroku.

This application supports the Getting Started with Python on Heroku article - check it out.

Running Locally

Make sure you have Python 3.9 installed locally. To push to Heroku, you'll need to install the Heroku CLI, as well as Postgres.

$ git clone https://github.com/heroku/python-getting-started.git
$ cd python-getting-started

$ python3 -m venv getting-started
$ pip install -r requirements.txt

$ createdb python_getting_started

$ python manage.py migrate
$ python manage.py collectstatic

$ heroku local

Your app should now be running on localhost:5000.

Deploying to Heroku

$ heroku create
$ git push heroku main

$ heroku run python manage.py migrate
$ heroku open

or

Deploy

Documentation

For more information about using Python on Heroku, see these Dev Center articles:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].