Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/app-generator/sample-rocket-django-azure
Django Starter (Soft Design) - CI/CD for Azure | Rocket Generator
https://github.com/app-generator/sample-rocket-django-azure
deploypro deploypro-django deploypro-sample django-azure django-ci django-ci-cd
Last synced: 15 days ago
JSON representation
Django Starter (Soft Design) - CI/CD for Azure | Rocket Generator
- Host: GitHub
- URL: https://github.com/app-generator/sample-rocket-django-azure
- Owner: app-generator
- Created: 2023-08-28T04:43:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-30T05:52:05.000Z (over 1 year ago)
- Last Synced: 2024-12-15T21:19:06.508Z (20 days ago)
- Topics: deploypro, deploypro-django, deploypro-sample, django-azure, django-ci, django-ci-cd
- Language: Python
- Homepage: https://app-generator.dev
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Django Starter
**Django** starter built with [Rocket Generator](https://app-generator.dev/). Actively supported by [AppSeed](https://appseed.us/) via `Email` and `Discord`.
> 👉 [Deployment-Ready for Azure](https://deploypro.dev/) via `DeployPRO` service (read the [DOCS](https://docs.app-generator.dev/deployment/django-azure))
## Features:
- ✅ `Up-to-date Dependencies`
- ✅ Modern UI: **[Soft Dashboard](https://www.creative-tim.com/product/soft-ui-dashboard?AFFILIATE=128200)** from `Creative-Tim`
- ✅ CI/CD flow via Render
- ✅ API Generator (optional)
## Start with `Docker`
> In case the starter was built with Docker support, here is the start-up CMD:
```bash
$ docker-compose up --build
```Once the above command is finished, the new app is started on `http://localhost:5085`
## Manual Build
> Download/Clone the sources
```bash
$ git clone https://github.com/app-generator/sample-rocket-django-azure.git
$ cd sample-rocket-django-azure
```
> Install modules via `VENV`
```bash
$ virtualenv env
$ source env/bin/activate
$ pip install -r requirements.txt
```
> `Set Up Database`
```bash
$ python manage.py makemigrations
$ python manage.py migrate
```
> `Generate your API` (optional)
```bash
$ python manage.py generate-api -f
```
> `Start the App`
```bash
$ python manage.py runserver
```At this point, the app runs at `http://127.0.0.1:8000/`.
---
**Django** starter built with [Rocket Generator](https://app-generator.dev/)