Python 3.10
Django 4.2.11+
Postgres 10
-
Clone this repository
-
Set up and activate a virtual env
python3.10 -m venv env source env/bin/activate
-
Install pip-tools:
pip install pip-tools
-
Install packages in requirements-dev.txt using pip-sync:
pip-sync requirements-dev.txt
-
Create an .env file:
cp sample_env .env
-
Get some SSO credentials and add them to your .env file. See the section below on staff-sso integration. NOTE: only required if you want to access the admin section.
-
Load country fixtures (optional):
./manage.py loaddata company/fixtures/countries.yaml
-
Run migrations and start a web server:
./manage.py migrate
and then./manage.py runserver
-
Create a .env file:
cp sample_env.docker .env
-
Get some SSO credentials and add them to your .env file. See the section below on staff-sso integration. NOTE: only required if you want to access the admin section.
-
Run the app under docker-compose:
docker-compose up -d
-
When using Apple M1 chipset you may have to run
docker-compose up --build
to force the load of the latest release of Dockerize.
Run py.test
from the project's root directory
For data-hub-api to connect to dnb-service, it must be provided with a token which is set inside the data-hub-api .env file under DNB_SERVICE_TOKEN
.
- Create a user in dnb-service.
- Log into the admin with this user.
- Go to tokens.
- Add a token.
- Select your user and save.
- Copy your token key into the data-hub-api
DNB_SERVICE_TOKEN
environment variable.
- There is a default user set for these environments with the username: [email protected]
- You can find this users token in the Django Admin and selecting the token model or by accessing the django shell for the environment you require.
- For getting the token in the Django shell run the following:
from rest_framework.authtoken.models import Token from django.contrib.auth import get_user_model User = get_user_model() user = User.objects.get(email='[email protected]') token = Token.objects.get(user=user) print(token.key)
- Copy the token printed above into data-hub-api
DNB_SERVICE_TOKEN
environment variable.
- Access the Django shell for the environment you want to create a user for.
- Run the following, you can change the email if required:
from rest_framework.authtoken.models import Token from django.contrib.auth import get_user_model User = get_user_model() user = User.objects.create(email='[email protected]') token = Token.objects.create(user=user) print(token.key)
- Copy the token printed above into data-hub-api
DNB_SERVICE_TOKEN
environment variable.
The admin section is protected by the DIT's internal SSO application. To run a local development environment with admin access you can either request a set of UAT SSO credentials from the webops team, or check out the staff-sso github repository and run the application locally. See https://www.github.com/uktrade/staff-sso for more details.
Once the app is running, you will be able to visit http://localhost:9000/api/swagger/ to see documentation for the endpoints.