Skip to content

Commit

Permalink
Merge branch 'main' of github.com:velis74/django-project-base
Browse files Browse the repository at this point in the history
  • Loading branch information
KlemenSpruk committed Oct 17, 2023
2 parents ee06707 + 26b2973 commit 456d033
Show file tree
Hide file tree
Showing 6 changed files with 10,212 additions and 17 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ Thumbs.db
/docs/.vitepress/
/.tox/
/django_project_base.egg-info/
package-lock.json
example/db.sqlite3
example/setup/env.py

Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Django project base

A collection of functionalities that are common to most projects we do.

- account management
- project management
- notifications (both to users and to apps)
- tagging
- background job processing
- roles & permissions
- profiling

This project is in VERY early development stage. Some of the functionalities are not even developed yet, some need
major rework, but some, surprisingly, should work pretty well already. An example of pretty well functioning ones is
account management.

## Example project

For running example django project prepare python environment and run (run in repository root):
Expand Down
2 changes: 1 addition & 1 deletion django_project_base/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "django project base"
__version__ = "0.3.100"
__version__ = "{version-string}"
__author__ = "Jure Erznožnik"
__email__ = "jure.erznoznik@gmail.com"
__license__ = "BSD 3-Clause"
Expand Down
Loading

0 comments on commit 456d033

Please sign in to comment.