Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
memopol
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
32
Issues
32
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Political Memory
memopol
Commits
9e0caea9
Commit
9e0caea9
authored
Jun 06, 2017
by
Okhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing openshift artifacts and updating the CI to remove egg-info before setup
parent
bedba356
Pipeline
#1105
passed with stage
in 10 minutes and 12 seconds
Changes
18
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
1 addition
and
150 deletions
+1
-150
.gitlab-ci.yml
.gitlab-ci.yml
+1
-0
.openshift/README.md
.openshift/README.md
+0
-5
.openshift/action_hooks/README.md
.openshift/action_hooks/README.md
+0
-3
.openshift/action_hooks/build
.openshift/action_hooks/build
+0
-1
.openshift/action_hooks/deploy
.openshift/action_hooks/deploy
+0
-32
.openshift/cron/README.cron
.openshift/cron/README.cron
+0
-27
.openshift/cron/daily/.gitignore
.openshift/cron/daily/.gitignore
+0
-0
.openshift/cron/daily/update_database
.openshift/cron/daily/update_database
+0
-6
.openshift/cron/hourly/.gitignore
.openshift/cron/hourly/.gitignore
+0
-0
.openshift/cron/minutely/.gitignore
.openshift/cron/minutely/.gitignore
+0
-0
.openshift/cron/monthly/.gitignore
.openshift/cron/monthly/.gitignore
+0
-0
.openshift/cron/weekly/README
.openshift/cron/weekly/README
+0
-16
.openshift/cron/weekly/chrono.dat
.openshift/cron/weekly/chrono.dat
+0
-1
.openshift/cron/weekly/chronograph
.openshift/cron/weekly/chronograph
+0
-3
.openshift/cron/weekly/jobs.allow
.openshift/cron/weekly/jobs.allow
+0
-12
.openshift/cron/weekly/jobs.deny
.openshift/cron/weekly/jobs.deny
+0
-7
.openshift/local_settings.py
.openshift/local_settings.py
+0
-34
.openshift/markers/README.md
.openshift/markers/README.md
+0
-3
No files found.
.gitlab-ci.yml
View file @
9e0caea9
...
@@ -48,6 +48,7 @@ django deploy:
...
@@ -48,6 +48,7 @@ django deploy:
-
git fetch origin
-
git fetch origin
-
git reset --hard origin/master
-
git reset --hard origin/master
-
find . -name '*.pyc' -delete
-
find . -name '*.pyc' -delete
-
rm -r src/*.egg-info
-
pip install -Ue .
-
pip install -Ue .
-
src/memopol/bin/install_client_deps.sh
-
src/memopol/bin/install_client_deps.sh
-
memopol migrate --noinput
-
memopol migrate --noinput
...
...
.openshift/README.md
deleted
100644 → 0
View file @
bedba356
The OpenShift
`python`
cartridge documentation can be found at:
http://openshift.github.io/documentation/oo_cartridge_guide.html#python
For information about .openshift directory, consult the documentation:
http://openshift.github.io/documentation/oo_user_guide.html#the-openshift-directory
.openshift/action_hooks/README.md
deleted
100644 → 0
View file @
bedba356
For information about action hooks, consult the documentation:
http://openshift.github.io/documentation/oo_user_guide.html#action-hooks
.openshift/action_hooks/build
deleted
100755 → 0
View file @
bedba356
export
OPENSHIFT_PYTHON_WSGI_APPLICATION
=
src
/
memopol
/
wsgi
.
py
.openshift/action_hooks/deploy
deleted
100755 → 0
View file @
bedba356
#!/bin/bash
# This deploy hook gets executed after dependencies are resolved and the
# build hook has been run but before the application has been started back
# up again. This script gets executed directly, so it could be python, php,
# ruby, etc.
set
-xe
source
${
OPENSHIFT_HOMEDIR
}
app-root/runtime/dependencies/python/virtenv/bin/activate
pip2
install
--no-cache-dir
-U
pip
pip2
install
--no-cache-dir
-Ue
${
OPENSHIFT_REPO_DIR
}
mkdir
-p
${
OPENSHIFT_DATA_DIR
}
media
pushd
${
OPENSHIFT_REPO_DIR
}
if
[
-f
${
OPENSHIFT_DATA_DIR
}
sentry
]
;
then
pip2
--no-cache-dir
install
raven
fi
src/memopol/bin/install_client_deps.sh
mkdir
-p
wsgi/static
[
-f
src/memopol/local_settings.py
]
&&
rm
src/memopol/local_settings.py
cp
.openshift/local_settings.py src/memopol/local_settings.py
memopol migrate
--noinput
memopol collectstatic
--noinput
ln
-sf
${
OPENSHIFT_DATA_DIR
}
media wsgi/static/media
ln
-sf
${
OPENSHIFT_DATA_DIR
}
compress/CACHE wsgi/static/collected/CACHE
popd
.openshift/cron/README.cron
deleted
100644 → 0
View file @
bedba356
Run scripts or jobs on a periodic basis
=======================================
Any scripts or jobs added to the minutely, hourly, daily, weekly or monthly
directories will be run on a scheduled basis (frequency is as indicated by the
name of the directory) using run-parts.
run-parts ignores any files that are hidden or dotfiles (.*) or backup
files (*~ or *,) or named *.{rpmsave,rpmorig,rpmnew,swp,cfsaved}
The presence of two specially named files jobs.deny and jobs.allow controls
how run-parts executes your scripts/jobs.
jobs.deny ===> Prevents specific scripts or jobs from being executed.
jobs.allow ===> Only execute the named scripts or jobs (all other/non-named
scripts that exist in this directory are ignored).
The principles of jobs.deny and jobs.allow are the same as those of cron.deny
and cron.allow and are described in detail at:
http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/ch-Automating_System_Tasks.html#s2-autotasks-cron-access
See: man crontab or above link for more details and see the the weekly/
directory for an example.
PLEASE NOTE: The Cron cartridge must be installed in order to run the configured jobs.
For more information about cron, consult the documentation:
http://openshift.github.io/documentation/oo_cartridge_guide.html#cron
http://openshift.github.io/documentation/oo_user_guide.html#cron
.openshift/cron/daily/.gitignore
deleted
100644 → 0
View file @
bedba356
.openshift/cron/daily/update_database
deleted
100755 → 0
View file @
bedba356
#!/bin/bash
set
-x
cd
$OPENSHIFT_REPO_DIR
export
CLEAN
=
1
nohup
bin/update_all
>
$OPENSHIFT_LOG_DIR
/update_all.log 2>&1 &
.openshift/cron/hourly/.gitignore
deleted
100644 → 0
View file @
bedba356
.openshift/cron/minutely/.gitignore
deleted
100644 → 0
View file @
bedba356
.openshift/cron/monthly/.gitignore
deleted
100644 → 0
View file @
bedba356
.openshift/cron/weekly/README
deleted
100644 → 0
View file @
bedba356
Run scripts or jobs on a weekly basis
=====================================
Any scripts or jobs added to this directory will be run on a scheduled basis
(weekly) using run-parts.
run-parts ignores any files that are hidden or dotfiles (.*) or backup
files (*~ or *,) or named *.{rpmsave,rpmorig,rpmnew,swp,cfsaved} and handles
the files named jobs.deny and jobs.allow specially.
In this specific example, the chronograph script is the only script or job file
executed on a weekly basis (due to white-listing it in jobs.allow). And the
README and chrono.dat file are ignored either as a result of being black-listed
in jobs.deny or because they are NOT white-listed in the jobs.allow file.
For more details, please see ../README.cron file.
.openshift/cron/weekly/chrono.dat
deleted
100644 → 0
View file @
bedba356
Time And Relative D...n In Execution (Open)Shift!
.openshift/cron/weekly/chronograph
deleted
100755 → 0
View file @
bedba356
#!/bin/bash
echo
"
`
date
`
:
`
cat
$(
dirname
\"
$0
\"
)
/chrono.dat
`
"
.openshift/cron/weekly/jobs.allow
deleted
100644 → 0
View file @
bedba356
#
# Script or job files listed in here (one entry per line) will be
# executed on a weekly-basis.
#
# Example: The chronograph script will be executed weekly but the README
# and chrono.dat files in this directory will be ignored.
#
# The README file is actually ignored due to the entry in the
# jobs.deny which is checked before jobs.allow (this file).
#
chronograph
.openshift/cron/weekly/jobs.deny
deleted
100644 → 0
View file @
bedba356
#
# Any script or job files listed in here (one entry per line) will NOT be
# executed (read as ignored by run-parts).
#
README
.openshift/local_settings.py
deleted
100644 → 0
View file @
bedba356
"""
Memopol local settings for Openshift.
"""
import
os
DATA_DIR
=
os
.
environ
[
'OPENSHIFT_DATA_DIR'
]
LOG_DIR
=
os
.
environ
[
'OPENSHIFT_LOG_DIR'
]
PUBLIC_DIR
=
os
.
path
.
join
(
os
.
environ
[
'OPENSHIFT_REPO_DIR'
],
'wsgi/static'
)
DATABASES
=
{
'default'
:
{
'NAME'
:
os
.
environ
[
'OPENSHIFT_APP_NAME'
],
'USER'
:
os
.
environ
[
'OPENSHIFT_POSTGRESQL_DB_USERNAME'
],
'PASSWORD'
:
os
.
environ
[
'OPENSHIFT_POSTGRESQL_DB_PASSWORD'
],
'HOST'
:
os
.
environ
[
'OPENSHIFT_POSTGRESQL_DB_HOST'
],
'PORT'
:
os
.
environ
[
'OPENSHIFT_POSTGRESQL_DB_PORT'
],
'ENGINE'
:
'django.db.backends.postgresql_psycopg2'
,
}
}
ALLOWED_HOSTS
=
[
os
.
environ
[
'OPENSHIFT_APP_DNS'
],
]
SITE_ID
=
1
SITE_NAME
=
'Memopol'
SITE_DOMAIN
=
os
.
environ
[
'OPENSHIFT_APP_DNS'
]
ORGANIZATION_NAME
=
'Memopol'
.openshift/markers/README.md
deleted
100644 → 0
View file @
bedba356
For information about markers, consult the documentation:
http://openshift.github.io/documentation/oo_user_guide.html#markers
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment