Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 787 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 787 Bytes

GWHCP - API

License: GPL v3 Build Status

An open source web hosting control panel. Designed to be easy to use and highly customizable.

Create Migrations

python manage.py makemigrations

Create Database Tables

python manage.py migrate
python manage.py migrate xmpp --database xmpp

Create Super User

python manage.py createsuperuser

Remove all Migrations - Testing only

cd /e/PycharmProjects/gwhcp/api/gwhcp_api
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete

Start Server

python manage.py runserver <ipaddress>:<port>