Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 2 months 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.

Awesome Lists containing this project

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 --initial

python manage schemamigration school --initial

python manage schemamigration sms --initial

python manage syncdb

python manage migrate
```