How to Move Apps into ACC?
1
├── manage.py
├── quickstart
│ ├── __init__.py
│ ├── __pycache__
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── requirements.txt2

3
{
"name": "Quickstart Project",
"description": "Quickstart Project",
"scripts": {
"release": "",
"build": "sh build.sh"
},
"env": {},
"formation": {
"web": {
"min": 1,
"max": "auto"
}
},
"runtime": "python:3.8-alpine",
"addons": []
}4
5
set -euo pipefail
apk add python3-dev g++ jpeg-dev zlib-dev libffi-dev --no-cache
pip install -U --force-reinstall pip
pip install -r requirements.txt
apk del g++ python3-dev6
web: gunicorn quickstart.wsgi -w 4 -b 0.0.0.0:8008 --access-logfile -7
├── Procfile
├── akinon.json
├── build.sh
├── manage.py
├── quickstart
│ ├── __init__.py
│ ├── __pycache__
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── requirements.txt8
Creating a Public Key
1
ssh-keygen -t rsa -b 40962
pbcopy < ~/.ssh/acc_rsa.pub3
Creating an Application
1
git init2
git remote add [remote_name] [remote_address]3
git remote add acc ssh://[email protected]/v1/repos/abcdefghe-abcdefhgh4
git remote -v5
git add .
git commit -m "Quickstart v1.0.0"
git tag v1.0.0
git push acc v1.0.06
Building Versions
1

2
3
Creating a Project
Installing the Application
Deploying the Application to the Project
1

2
3

4

Last updated
Was this helpful?

