Dump existing data:
python3 manage.py dumpdata > datadump.json
Change settings.py to Postgres backend.
Make sure you can connect on PostgreSQL. Then:
| #include <stdio.h> | |
| #include <linux/version.h> | |
| #include <sys/utsname.h> | |
| /* | |
| * from rhel7's linux/version.h: | |
| * #define LINUX_VERSION_CODE 199168 | |
| * #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) | |
| */ |
| // Compiled by Igor Shults | |
| // Last Updated: July 23, 2020 | |
| GRAILS GROOVY SOURCE | |
| 4.1.0 2.5.14 https://github.com/grails/grails-core/blob/v4.1.0/gradle.properties | |
| 4.0.4 2.5.6 | |
| 4.0.3 2.5.6 | |
| 4.0.2 2.5.6 | |
| 4.0.1 2.5.6 | |
| 4.0.0 2.5.6 https://github.com/grails/grails-core/blob/v4.0.0/build.gradle |
install the normal way:
wget https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.7.2-omnibus.5.4.2.ci-1_amd64.deb & > /dev/null
sudo apt-get update
sudo apt-get upgrade| from threading import Timer | |
| def debounce(wait): | |
| """ Decorator that will postpone a functions | |
| execution until after wait seconds | |
| have elapsed since the last time it was invoked. """ | |
| def decorator(fn): | |
| def debounced(*args, **kwargs): | |
| def call_it(): |