gobal-cms-django Base app
Setup
The first thing to do is to clone the repository:
$ git clone https://github.com/Developer-DewPool/gobal-cms-django.git
$ cd gobal-cms-django
if virtualenv not install then first install virtualenv:
$ pip3 install virtualenv
Create a virtual environment to install dependencies in and activate it:
$ virtualenv env
$ source env/bin/activate
Then install the dependencies:
(env)$ pip3 install -r requirements.txt
Note the (env)
in front of the prompt. This indicates that this terminal session operates in a virtual environment set up by virtualenv
.
Once pip3
has finished downloading the dependencies:
(env)$ ./manage.py runserver
And navigate to http://127.0.0.1:8000/admin/
or http://127.0.0.1:8000/
.
for http://127.0.0.1:8000/admin/
create credential:
(env)$ ./manage.py createsuperuser
then complete as it follow.