Questions tagged [aptible]

Aptible is a HIPAA-compliant Platform as a Service (PaaS)

7 questions
1
vote
2 answers

How to resolve this error with github actions ssh-agent: Error loading key "(stdin)": error in libcrypto

I am trying to deploy to aptible with github actions. This is my .yml file name: Cartwheel Staging CI run-name: ${{ github.actor }} activated these GitHub Actions on: pull_request: branches: [ staging ] env: APTIBLE_ENVIRONMENT: ${{…
garthcodes
  • 91
  • 1
  • 6
1
vote
1 answer

(2027, 'Malformed packet')

I am using Django with RDS along with Aptible deployement. I started receiving lots (2027, 'Malformed packet') for a while but when I run the same query using Django "shell" OR "dbshell" then the query works fine. I am not able to find any lead…
SHIVAM JINDAL
  • 2,844
  • 1
  • 17
  • 34
1
vote
3 answers

How to connect a Docker container to PostgreSQL running on the localhost using a DATABASE_URL?

I'm following the Aptible Django Quickstart Tutorial which described how to create and deploy an app Aptible's PaaS. I would also like to be able to run the Docker container with the Django app locally and connect to a local PostgreSQL database,…
Kurt Peek
  • 52,165
  • 91
  • 301
  • 526
0
votes
1 answer

How to display custom message on Aptible ssh login

I want to display a custom message whenever anyone creates a SSH session on Apitble. To do this, I have added a entrypoint script in Dockerfile to display the message. echo "message" exec "$@" But this is causing before_release commands execution…
Dhirendra
  • 780
  • 9
  • 26
0
votes
1 answer

How to install the hstore extension on the template1 database using a Django migration?

According to http://djangonauts.github.io/django-hstore/#_limitations, in order to install PostgreSQL's hstore extension on the template1 database one must run psql -d template1 -c 'create extension hstore;' as an initial setup step. I'd prefer to…
Kurt Peek
  • 52,165
  • 91
  • 301
  • 526
0
votes
1 answer

How to push the entire content of a working tree to a remote branch?

I'm trying to deploy a Django app using the Aptible platform by following the instructions on https://www.aptible.com/documentation/enclave/tutorials/quickstart-guides/python/django.html. I currently have two remotes: Kurts-MacBook-Pro:lucy-web…
Kurt Peek
  • 52,165
  • 91
  • 301
  • 526
0
votes
1 answer

How to provide an SSH certificate and private key to Aptible

I'm trying out a HIPAA-compliant PaaS, Aptible, by following their Django Quickstart Guide. I've used the aptible CLI to follow the Create an App and Provision a Database steps, but I'm running into trouble at Add a Dockerfile. This step says to add…
Kurt Peek
  • 52,165
  • 91
  • 301
  • 526