KarmaNotes.org v3.0 (mirror)

Bryan 625ca18aa5 found some variables defined on Heroku missing from env 9 gadi atpakaļ
docs 5327be4790 Create README.md 9 gadi atpakaļ
karmaworld 96a0464de6 #391 force change() on reload to trigger filtering 9 gadi atpakaļ
var c71d744c33 Removing unused directory 10 gadi atpakaļ
.env.example 625ca18aa5 found some variables defined on Heroku missing from env 9 gadi atpakaļ
.foreman aa3b27296d Migrate secrets to environment variables 10 gadi atpakaļ
.gitignore a0a769cb70 Delete Vagrant related things, and supervisord related things. Update README 10 gadi atpakaļ
License bac580c9e6 adding AGPL license to karmaworld 10 gadi atpakaļ
Procfile 135a43c539 listen on correct port for Heroku 9 gadi atpakaļ
Procfile-development aa3b27296d Migrate secrets to environment variables 10 gadi atpakaļ
README.heroku d2ffd778bd moved Heroku buildpack, added config for it, referenced external docs 10 gadi atpakaļ
README.md bf8a9ae8d9 updating README while running through local install. 9 gadi atpakaļ
celerywrapper.sh 6365a208b4 Improve celery wrapper script 10 gadi atpakaļ
database_backup.sh aa30862385 Fix backup script 10 gadi atpakaļ
dicthelpers.py a583f311a0 making fabric better for VM deployment and btw #335 10 gadi atpakaļ
dicthelperstest.py a583f311a0 making fabric better for VM deployment and btw #335 10 gadi atpakaļ
export_env_to_heroku.py 68f0f0340d manage commented out variables properly 10 gadi atpakaļ
manage.py a0a769cb70 Delete Vagrant related things, and supervisord related things. Update README 10 gadi atpakaļ
requirements-dev.txt aa3b27296d Migrate secrets to environment variables 10 gadi atpakaļ
requirements.txt 4b0b2900c7 updating for heroku production version of taggit 9 gadi atpakaļ
runtime.txt 6a77d222c5 Heroku conversion step 2 10 gadi atpakaļ

README.heroku

Checkout the karmanotes repository locally.

Create Heroku app from either the web interface or the CLI. See Heroku
documentation for more information at
`https://devcenter.heroku.com/articles/getting-started-with-django`

From the settings page for the Heroku app, find the Git URL and copy it.

Install the Heroku CLI. Make sure to configure the Heroku CLI tool with `heroku login`.

In the karmanotes repository:
`git remote add my-heroku-dev git@heroku.com:.git`

Create a Heroku database either from the web interface or the CLI by adding
a Postgres Add-On to the Heroku App. Look for the Dev Plan (its free). Once
created, click through the add-on until the connection settings are found
for the app's database. Keep track of URL in the connection settings for the
configuration step. It'll be pasted into the `DATABASE_URL` environment
variable.

Configure the application by copying `${project_root}/.env.example` to `${project_root}/.env` and edit it appropriately for all external dependencies.

Push the configuration to Heroku by running the handy script. `python export_env_to_heroku.py`

Push the app to Heroku with git. `git push my-heroku-dev master`