Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/app-generator/deploypro-django
DeployPRO Service - Django Sample
https://github.com/app-generator/deploypro-django
deploypro deploypro-django deploypro-sample
Last synced: 15 days ago
JSON representation
DeployPRO Service - Django Sample
- Host: GitHub
- URL: https://github.com/app-generator/deploypro-django
- Owner: app-generator
- Created: 2023-07-18T05:27:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-24T05:21:21.000Z (over 1 year ago)
- Last Synced: 2024-12-15T21:18:15.561Z (20 days ago)
- Topics: deploypro, deploypro-django, deploypro-sample
- Language: Python
- Homepage: https://www.docs.deploypro.dev/samples/django
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# [DeployPRO Django](https://www.docs.deploypro.dev/samples/django) `Free Sample`
Minimal `Django Sample` provided by [DeployPRO](https://deploypro.dev/) service for testing.
## Run in `Docker`
```bash
$ docker-compose up --build
```
At this point, the app runs at `localhost:5000`
## Manual Build
> Install modules via `VENV`
```bash
$ pip install django
```
> Migrate DB
```bash
$ python manage.py makemigrations
$ python manage.py migrate
```
> Start the app
```bash
$ python manage.py runserver
```At this point, the app runs at `http://127.0.0.1:8000/`.
---
[Django Starter](https://www.docs.deploypro.dev/samples/django) - Open-source sample provided by [DeployPRO](https://deploypro.dev/)