add app users
ci/woodpecker/push/woodpecker Pipeline was successful Details

wip-payments
Aravinth Manivannan 2022-04-27 17:12:03 +05:30
parent c93af38aa3
commit 39c1a138ae
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
8 changed files with 19 additions and 0 deletions

View File

@ -32,6 +32,7 @@ help: ## Prints help for targets with comments
lint: ## Run linter
@./venv/bin/black ./dashboard/*
@./venv/bin/black ./users/*
migrate: ## Run migrations
$(call run_migrations)

0
users/__init__.py Normal file
View File

3
users/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
users/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class UsersConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'users'

View File

3
users/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
users/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
users/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.