Skip to content

UnitapApp/unitap-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

95fe09d · Mar 31, 2025
Oct 26, 2024
Jul 27, 2024
Oct 23, 2024
Mar 3, 2025
Oct 26, 2024
Aug 26, 2024
Oct 26, 2024
Apr 15, 2024
Oct 23, 2023
Oct 31, 2024
Oct 26, 2024
Oct 26, 2023
Apr 23, 2022
Jul 20, 2024
Mar 10, 2024
Jan 19, 2024
Oct 22, 2023
Aug 25, 2024
Mar 31, 2025
Nov 26, 2023
Apr 20, 2024
Oct 23, 2023
Jul 20, 2024
Apr 20, 2024
Aug 30, 2022
Dec 2, 2023
Oct 16, 2024
Oct 17, 2024
Nov 10, 2022
Aug 25, 2024
Oct 17, 2023

Repository files navigation

Bright ID Gas Faucet

BrightID users can claim free gas tokens on supported chains.

Quick start

create a .env file and add the following

POSTGRES_DB="unitap"
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="postgres"
FIELD_KEY="rnPAm1QKx8hepMhqV0IKJxB9tdR_hhU4-0EVTGVXQg0="
SECRET_KEY="django-insecure-!=_mi0j#rhk7c9p-0wg-3me6y&fk$+fahz6fh)k1n#&@s(9vf5"
BRIGHT_PRIVATE_KEY=""
DEBUG="True"
SENTRY_DSN="DEBUG-DSN"

read more about DATABASE_URL in the dj-database-url docs

Setup pre-commit

pre-commit works with python3.10.

create a new virtualenv and activate it:

python -m virtualenv .venv
source .venv/bin/activate

install pre-commit:

make setup-pre-commit

Using Docker Compose

you might need "sudo" privilege to run the following.

run the following command from projects root directory to build a docker image from this repo and run it:

make docker-up-dev

create a superuser:

find unitap-backend image container ID:

docker ps | grep unitap-backend

sample output:

61a36aae8213   unitap-backend         "/bin/sh -c ./start.…"   6 minutes ago    Up About a minute   0.0.0.0:5678->5678/tcp   brightidfaucet-backend-1

61a36aae8213 is the container id. Open a shell inside this container:

docker exec -it 61a36aae8213 /bin/bash

create a superuser:

python manage.py createsuperuser

you can exit the terminal now. You should now be able to visit the site on http://127.0.0.1:5678/admin/ and use the superuser credentials to login.

Using Local Virtual Environment

create a new virtualenv and activate it:

python -m virtualenv .venv
source .venv/bin/activate

install requirements:

pip install -r requirements.txt

run migrations:

mkdir db # make sure db folder exists
python manage.py migrate

run server:

python manage.py runserver

running tests

You need ganache or any web3 rpc compatible test chain to run the tests.

edit faucet/test.py and set the following according to your local test chain:

test_rpc_url = "http://127.0.0.1:7545"
test_chain_id = 1337
test_wallet_key = "0x4f3edf983ac636a65a842ce7c78d9aa706d3b113bce9c46f30d7d21715b23b1d" # must hold some native tokens

run tests:

ganache-cli -d -p 7545
python manage.py test