Django Generated Project
Starter built with Django App Generator (an open-source service) using a modern UI Kit.
In order to use the sources, follow the build instructions as presented in Start with Docker
and Manual Build
sections.
Up-to-date Dependencies
, best practices- Modern UI
- Extended User Profile
- (optional) API Generator
- (optional) Celery
- (optional) OAuth Github, Google
- (optional) CI/CD for Render
- (optional) Docker
In case the starter was built with Docker support, here is the start up CMD:
$ docker-compose up --build
Once the above command is finished, the new app is started on http://localhost:5085
Download/Clone the sources
$ git clone https://github.com/<THIS_REPO>.git
$ cd <LOCAL_Directory>
Install modules via
VENV
$ virtualenv env
$ source env/bin/activate
$ pip install -r requirements.txt
Set Up Database
$ python manage.py makemigrations
$ python manage.py migrate
Start the App
$ python manage.py runserver
At this point, the app runs at http://127.0.0.1:8000/
.
OAUTH_GITHUB
Starter built with Django App Generator - open-source service for developers.