A plugin for django-simple-deploy, supporting deployments to Railway.
Project description
dsd-railway
A plugin for deploying Django projects to Railway, using django-simple-deploy.
For full documentation, see the documentation for django-simple-deploy.
Current status
This plugin is in a pre-1.0 development phase. It has limited functionality at the moment, but should evolve quickly.
Configuration-only deployment
- Install the Railway CLI
- Choose a name for your deployed project, and use it everywhere you see
<project-name>Run the following commands:
$ railway login # May need to use `railway login --browserless`
$ pip install dsd-railway
# Add `django_simple_deploy` to `INSTALLED_APPS`
$ python manage.py deploy --deployed-project-name <project-name>
$ git status
# Review changes
$ git add .
$ git commit -m "Configured for deployment to Railway."
- Run the following. (You'll see a bunch of errors after
railway up. Those errors will go away after creating the database. This is Railway's recommended approach!)
$ railway init --name <project-name>
$ railway up
$ railway add --database postgres
$ railway variables \
--set 'PGDATABASE=${{Postgres.PGDATABASE}}' \
--set 'PGUSER=${{Postgres.PGUSER}}' \
--set 'PGPASSWORD=${{Postgres.PGPASSWORD}}' \
--set 'PGHOST=${{Postgres.PGHOST}}' \
--set 'PGPORT=${{Postgres.PGPORT}}' \
--service <project-name>
$ railway domain --port 8080 --service <project-name>
After this last command, you should see the URL for your project. You may need to wait a few minutes for the deployment to finish.
If your deployment does not seem to work, you can try redeploying it:
$ railway redeploy --service <project-name>
Fully automated deployment
- Install the Railway CLI
- Log in, using
railway login. You may need to runrailway login --browserless. - Install
dsd-railway:pip install dsd-railway - Add
django_simple_deploytoINSTALLED_APPS - Run
python manage.py deploy --automate-all.
Your deployed project should appear in a new browser tab.
Destroying a project
This is mostly for developers, but if you're trying this out and want to destroy a project the following should work:
$ export RAILWAY_API_TOKEN=<account-token>
$ python developer_resources/destroy_project.py <project-id>
Be careful running this command, as it is an immediately destructive action. If you want to be more cautious, you can delete the project in your Railway dashboard. Railway schedules the project for deletion in the next 48 hours, giving you some possibility of restoring the project if you need to.
If you don't know the ID of your project, you can run railway status --json. The ID will the first item in the JSON output.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dsd_railway-0.1.3.tar.gz.
File metadata
- Download URL: dsd_railway-0.1.3.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6db82c6160f161391d210117dea9a214b038fa222adc382876c0d6e1d7dca4ef
|
|
| MD5 |
6f89c605b9c27445f63b797902ebe56b
|
|
| BLAKE2b-256 |
2d957cd69d70efa8702105e3c8dd50f7ffc84c384a1522cd6d3d7ad6341999bf
|
File details
Details for the file dsd_railway-0.1.3-py3-none-any.whl.
File metadata
- Download URL: dsd_railway-0.1.3-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32dcc17b936ba2410dbc417702c219f980cc6704e6f44796d63a34a426dc94de
|
|
| MD5 |
a0bf5e71771207f9b9188450da3eb043
|
|
| BLAKE2b-256 |
e4a420701862331839f0e320025739ed6ec0967c43d9d3a06bfebb4032675379
|