Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tranvictor/truongnha
This is a school management system for Vietnam, focusing on secondary school and hight school only. Main purpose of the project is making a high interactive system.
https://github.com/tranvictor/truongnha
Last synced: 8 days ago
JSON representation
This is a school management system for Vietnam, focusing on secondary school and hight school only. Main purpose of the project is making a high interactive system.
- Host: GitHub
- URL: https://github.com/tranvictor/truongnha
- Owner: tranvictor
- Created: 2013-08-04T15:38:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-05T14:48:54.000Z (over 11 years ago)
- Last Synced: 2024-11-16T17:40:57.347Z (about 1 month ago)
- Language: Python
- Homepage: http://truongnha.com
- Size: 3.66 MB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-vietnamese-language - Hệ thống quản lý trường học
README
# TRUONGNHA
## DATABASE INSTALLATION
MYSQL database must be turned into READ COMMITTED isolation level:
command:```
SET GLOBAL TRANSACTION ISOLATION LEVEL READ COMMITTED;CREATE DATABASE truongnha CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT ALL PRIVILEGES ON truongnha.* TO admin@localhost IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
GRANT ALL ON test_truongnha.* TO admin@localhost;
QUIT;
```
### Sync database from South
```
python manage schemamigration app --initialpython manage schemamigration school --initial
python manage schemamigration sms --initial
python manage syncdb
python manage migrate
```