https://github.com/app-generator/core-django-dyn-api
Django Dynamic API - Complete Sample | AppSeed
https://github.com/app-generator/core-django-dyn-api
appseed django-api django-starter django-template
Last synced: 8 months ago
JSON representation
Django Dynamic API - Complete Sample | AppSeed
- Host: GitHub
- URL: https://github.com/app-generator/core-django-dyn-api
- Owner: app-generator
- Created: 2022-10-24T08:57:46.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-24T09:46:21.000Z (about 3 years ago)
- Last Synced: 2025-04-06T18:12:46.813Z (8 months ago)
- Topics: appseed, django-api, django-starter, django-template
- Language: Python
- Homepage: https://github.com/app-generator/django-dynamic-api
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# [Django Dynamic API](https://github.com/app-generator/django-dynamic-api) `Sample`
Minimal **Django** project with `Docker` support - actively supported by [AppSeed](https://appseed.us/) via `Email` and `Discord`.
> Features - see **[video](https://www.youtube.com/watch?v=nPQMUafTrNY)** presentation
- ✅ `Up-to-date Dependencies`
- ✅ `Docker`
- ✅ Integrates [Dynamic API Library](https://github.com/app-generator/django-dynamic-api) Library for Django
## ✨ Start the app in Docker
> 👉 **Step 1** - Download the code from the GH repository (using `GIT`)
```bash
$ git clone https://github.com/app-generator/core-django-dyn-api.git
$ cd core-django-dyn-api
```
> 👉 **Step 2** - Start the APP in `Docker`
```bash
$ docker-compose up --build
```
Visit `http://localhost:5085` in your browser. The app should be up & running.
## Manual Build
> 👉 Download the code
```bash
$ git clone https://github.com/app-generator/core-django-dyn-api.git
$ cd core-django-dyn-api
```
> 👉 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
```
> 👉 Start the app
```bash
$ python manage.py runserver
```
At this point, the app runs at `http://127.0.0.1:8000/`.

---
[Django Dynamic API](https://github.com/app-generator/django-dynamic-api) `Sample` - Minimal **Django** starter provided by **[AppSeed](https://appseed.us/)**