https://github.com/briefmnews/django-french-highschool
https://github.com/briefmnews/django-french-highschool
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/briefmnews/django-french-highschool
- Owner: briefmnews
- License: mit
- Created: 2023-08-09T08:44:29.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-08T15:09:20.000Z (over 1 year ago)
- Last Synced: 2024-04-25T12:42:45.324Z (about 1 year ago)
- Language: Python
- Size: 220 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-french-highschool
French high school database with UAI, department and region## Installation
Install with pip:
```
pip install django-french-highschool
```## Setup
In order to make `django-french-highschool` works, you need to follow the steps below:### Settings
First, you need to add the following configuration to your settings:
```python
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
...,
'french_highschool',
...
]
```### Migrations
Next, you need to run the migrations in order to update your database schema:
```
python manage.py migrate
```### Fixtures
This app comes with existing data from french high schools. To load the data in the database run:
```
python manage.py loaddata high_school
```