-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ffcde3
commit 343016b
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
# Character Certificate Management System | ||
|
||
A Character Certificate Management System written in Django Framework that helps in generating and storing of Character Certificates for any educational institution. | ||
|
||
|
||
|
||
|
||
|
||
|
||
## Features | ||
|
||
- Dynamic certificate generation | ||
- Configurable options including Institute Name, Logo, etc. | ||
- User friendly and easy to use | ||
|
||
|
||
|
||
|
||
## Installation | ||
|
||
### Installation of the Project with Poetry | ||
|
||
```bash | ||
poetry shell | ||
poetry install | ||
python manage.py makemigrations | ||
python manage.py migrate | ||
python manage.py runserver | ||
``` | ||
|
||
### Installation without Poetry | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
python manage.py makemigrations | ||
python manage.py migrate | ||
python manage.py runserver | ||
``` | ||
|
||
## License | ||
|
||
BSD-2-Clause-License | ||
|