forked from mozilla/pontoon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also: * Drop heroku-buildpack-apt (incl. Aptfile)
- Loading branch information
Showing
10 changed files
with
27 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,12 +20,9 @@ Buildpack | |
--------- | ||
Pontoon uses several buildpacks in a specific order. They are (in order): | ||
|
||
1. `heroku-buildpack-apt`_ for installing Subversion. | ||
2. `heroku-buildpack-ssh`_ for setting up the SSH keys necessary for committing | ||
to version control. | ||
3. The official ``heroku/nodejs`` buildpack for installing Node.js programs for | ||
pre-processing frontend assets. | ||
4. The official ``heroku/python`` buildpack as our primary buildpack. | ||
1. `heroku-buildpack-ssh`_ for setting up the SSH keys necessary for committing to version control. | ||
2. The official ``heroku/nodejs`` buildpack for installing Node.js programs for pre-processing frontend assets. | ||
3. The official ``heroku/python`` buildpack as our primary buildpack. | ||
|
||
You can set these buildpacks on your app with the following toolbelt commands: | ||
|
||
|
@@ -37,7 +34,6 @@ You can set these buildpacks on your app with the following toolbelt commands: | |
heroku buildpacks:add --index 1 https://github.com/Osmose/heroku-buildpack-ssh.git#v0.1 | ||
heroku buildpacks:add --index 1 https://github.com/mozilla/heroku-buildpack-apt.git#v0.1 | ||
.. _heroku-buildpack-apt: https://github.com/mozilla/heroku-buildpack-apt | ||
.. _heroku-buildpack-ssh: https://github.com/Osmose/heroku-buildpack-ssh | ||
|
||
Environment Variables | ||
|
@@ -289,9 +285,6 @@ you create: | |
Host hg.mozilla.org | ||
User [email protected] | ||
|
||
Host svn.mozilla.org | ||
User [email protected] | ||
|
||
``SSH_KEY`` | ||
SSH private key to use for authentication when Pontoon connects to VCS | ||
servers via SSH. | ||
|
@@ -322,11 +315,6 @@ you create: | |
`send_suggestion_notifications` management command will run. 0 represents | ||
Monday, 6 represents Sunday. The default value is 4 (Friday). | ||
|
||
``SVN_LD_LIBRARY_PATH`` | ||
Path to prepend to ``LD_LIBRARY_PATH`` when running SVN. This is necessary | ||
on Heroku because the Python buildpack alters the path in a way that breaks | ||
the built-in SVN command. Set this to ``/usr/lib/x86_64-linux-gnu/``. | ||
|
||
``SYNC_TASK_TIMEOUT`` | ||
Optional. Multiple sync tasks for the same project cannot run concurrently to | ||
prevent potential DB and VCS inconsistencies. We store the information about | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 4.2.17 on 2025-01-15 08:19 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("base", "0070_userprofile_transactional_emails"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="repository", | ||
name="type", | ||
field=models.CharField( | ||
choices=[("git", "Git"), ("hg", "HG")], default="git", max_length=255 | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters