https://github.com/alextraveylan/fast_deploy_django
test deploy django project with railway app
https://github.com/alextraveylan/fast_deploy_django
Last synced: 3 months ago
JSON representation
test deploy django project with railway app
- Host: GitHub
- URL: https://github.com/alextraveylan/fast_deploy_django
- Owner: AlexTraveylan
- Created: 2024-09-09T13:33:42.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-09T14:09:54.000Z (9 months ago)
- Last Synced: 2025-01-13T10:51:02.351Z (5 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test Deploy fast and easy a Django app to RailwayApp
## How to use
1. Create a new project on RailwayApp
2. Link the project to your Github account
3. Let him autodetect and deploy your app
- settings > network > generate domain
- Launch command `gunicorn --bind 0.0.0.0:8000 mon_site.wsgi:application`
## Development### Version
python >= 3.10
### Environment
```bash
python -m venv venv# Linux or MacOS
source venv/bin/activate
# Windows
venv\Scripts\activatepip install -r requirements.txt
```### Run
```bash
python manage.py runserver
```