Task for syncing NTNU personal-xxx data from NTNU's database.
Go to file
BoHung Chiu fab9ac0065 Fix bug. 2023-09-21 12:58:01 +08:00
app init repo 2019-09-17 14:04:06 +08:00
bin init repo 2019-09-17 14:04:06 +08:00
config init repo 2019-09-17 14:04:06 +08:00
lib Fix bug. 2023-09-21 12:58:01 +08:00
test init repo 2019-09-17 14:04:06 +08:00
.gitignore init repo 2019-09-17 14:04:06 +08:00
Gemfile init repo 2019-09-17 14:04:06 +08:00
MIT-LICENSE init repo 2019-09-17 14:04:06 +08:00
README.md Update README.md 2020-06-23 14:46:35 +08:00
Rakefile init repo 2019-09-17 14:04:06 +08:00
sync_ntnu_personal_data.gemspec Update dependencies 2021-11-22 06:02:41 +00:00

README.md

Usage

install FreeTDS for school server in advance

# install steps for Ubuntu
$ sudo apt-get install wget
$ sudo apt-get install build-essential
$ sudo apt-get install libc6-dev

wget http://www.freetds.org/files/stable/freetds-1.1.24.tar.gz
tar -xzf freetds-1.1.24.tar.gz
cd freetds-1.1.24
./configure --prefix=/usr/local --with-tdsver=7.3
sudo make
sudo make install

More infomation please visit TinyTDS.

do the steps below at the target app directory, not this Orbit module directory(Rails Engine)

  • create project_root/config/initializers/ntnu_sybase_config.rb with following content:
ENV['USER_NAME'] = 'database user name'
ENV['PASSWORD'] = 'database password'
ENV['NTNU_DB_HOST'] = 'database host'
ENV['NTNU_DB_PORT'] = 'database port'
ENV['TDS_VERSION'] = '5.0'
ENV['DB_NAME'] = 'database name'
ENV['VIEW_RESULT'] = 'database view result'
  • set cron job to run bundle exec rake sync_personal_plugins:sync for nccu everyday
  • set cron job to run bundle exec rake sync_ntnu_personal_plugins:sync for ntnu everyday