Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
engine
Commits
44e5b74b
Commit
44e5b74b
authored
4 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
Create default Gunicorn configuration file.
parent
30b2aa7e
No related branches found
No related tags found
No related merge requests found
Pipeline
#653
failed
4 years ago
Stage: test
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
configuration/sample.gunicorn.conf.py
+0
-0
0 additions, 0 deletions
configuration/sample.gunicorn.conf.py
docs/installation-production.md
+2
-1
2 additions, 1 deletion
docs/installation-production.md
install.sh
+4
-1
4 additions, 1 deletion
install.sh
with
6 additions
and
2 deletions
configuration/gunicorn.conf.py
→
configuration/
sample.
gunicorn.conf.py
+
0
−
0
View file @
44e5b74b
File moved
This diff is collapsed.
Click to expand it.
docs/installation-production.md
+
2
−
1
View file @
44e5b74b
...
...
@@ -108,7 +108,8 @@ This script does the following:
-
NodeJS Modules (
`script/install-web.sh`
)
-
Python Packages (
`requirements.txt`
)
-
Creates a log folder in
`/var/log/aura/`
-
Creates a default configuration file in
`/etc/aura/engine.ini`
-
Creates a default Engine configuration file in
`/etc/aura/engine.ini`
-
Creates a default Gunicorn configuration file in
`gunicorn.conf.py`
When this is completed, carefully check if any error occured. In case your database has been setup
automatically, note the relevant credentials for later use in your
`engine.ini`
configuration.
...
...
This diff is collapsed.
Click to expand it.
install.sh
+
4
−
1
View file @
44e5b74b
...
...
@@ -45,9 +45,12 @@ if [ $mode == "prod" ]; then
echo
"Create local 'tmp' Folder ..."
mkdir
-p
tmp
echo
"Copy configuration to '/etc/aura/engine.ini'"
echo
"Copy
default Engine
configuration to '/etc/aura/engine.ini'"
cp
-n
configuration/sample-production.engine.ini /etc/aura/engine.ini
echo
"Copy default Gunicorn configuration to '/etc/aura/engine.ini'"
cp
-n
configuration/sample.gunicorn.conf.py configuration/gunicorn.conf.py
echo
"Create Virtual Env for Gunicorn"
virtualenv
-p
/usr/bin/python3.7 ../python-env
source
../python-env/bin/activate
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment