Django starter built with Rocket Generator. Actively supported by AppSeed via Email and Discord.
- ✅
Up-to-date Dependencies - ✅ Modern UI: Soft Dashboard from
Creative-Tim - ✅ CI/CD flow via Render
- ✅ API Generator (optional)
In case the starter was built with Docker support, here is the start up CMD:
$ docker-compose up --buildOnce the above command is finished, the new app is started on http://localhost:5085
Download/Clone the sources
$ git clone https://github.com/appseed-projects4/sample-rocket-django.git $ cd sample-rocket-djangoInstall 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
Generate your API(optional)
$ python manage.py generate-api -f
Start the App
$ python manage.py runserverAt this point, the app runs at http://127.0.0.1:8000/.
Django starter built with Rocket Generator