KarmaNotes.org v3.0 (mirror)

Bryan d8b81c5c2d lxml still used for fetching USDE schools. il y a 8 ans
docs 5327be4790 Create README.md il y a 9 ans
karmaworld 1b3d2eb88e Removing client_secrets.json as outdated and onerous. Untested. il y a 9 ans
var c71d744c33 Removing unused directory il y a 10 ans
.env.example 048451fb44 no longer wish to imply Google Apps is required. il y a 9 ans
.foreman 11676a1f71 Reconfiguring Procfile closes #415, also closes #413 il y a 9 ans
.gitignore a0a769cb70 Delete Vagrant related things, and supervisord related things. Update README il y a 10 ans
License bac580c9e6 adding AGPL license to karmaworld il y a 10 ans
Procfile 11676a1f71 Reconfiguring Procfile closes #415, also closes #413 il y a 9 ans
README.heroku d2ffd778bd moved Heroku buildpack, added config for it, referenced external docs il y a 10 ans
README.md d8b81c5c2d lxml still used for fetching USDE schools. il y a 8 ans
database_backup.sh aa30862385 Fix backup script il y a 10 ans
dicthelpers.py a583f311a0 making fabric better for VM deployment and btw #335 il y a 10 ans
dicthelperstest.py a583f311a0 making fabric better for VM deployment and btw #335 il y a 10 ans
export_env_to_heroku.py e8f3f55ff7 small fix to prevent strings for being literally quoted il y a 9 ans
manage.py a0a769cb70 Delete Vagrant related things, and supervisord related things. Update README il y a 10 ans
requirements-dev.txt aa3b27296d Migrate secrets to environment variables il y a 10 ans
requirements.txt d8b81c5c2d lxml still used for fetching USDE schools. il y a 8 ans
run_with_env.py a4dae2dfbe make more use of the .env file on diverse systems il y a 9 ans
runtime.txt 6a77d222c5 Heroku conversion step 2 il y a 10 ans

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`