Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
Meltano
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Meltano
Meltano
Commits
9aa9e482
Commit
9aa9e482
authored
5 years ago
by
Ben Hong
Committed by
Yannis Roussos
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
docs (
#1397
): Simplify env file creation
parent
22ee245c
No related branches found
Branches containing commit
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/src/handbook/engineering/meltanodata-guide/README.md
+4
-10
4 additions, 10 deletions
docs/src/handbook/engineering/meltanodata-guide/README.md
with
4 additions
and
10 deletions
docs/src/handbook/engineering/meltanodata-guide/README.md
+
4
−
10
View file @
9aa9e482
...
...
@@ -403,19 +403,13 @@ To do this, you need to:
1.
SSH into the droplet
1.
Change directory into
`/var/meltano/project`
1.
If it doesn't exist already, create a new
`.env`
file
```
bash
touch
.env
```
4.
Open the
`.env`
file in a text editor
1.
If it doesn't exist already, create a new
`.env`
file and open it in a text editor
```
bash
vim .env
```
5
.
Copy and paste the following template into the
`.env`
file
4
.
Copy and paste the following template into the
`.env`
file
```
bash
PG_USERNAME
=
<username>
...
...
@@ -425,7 +419,7 @@ PG_PORT=<port>
PG_DATABASE
=
<database>
```
6
.
Replace each field with the credentials from DigitalOcean
5
.
Replace each field with the credentials from DigitalOcean
1.
Secure the file by running the following commands:
...
...
@@ -437,7 +431,7 @@ chown meltano:meltano /var/meltano/project/.env
chmod
620 /var/meltano/project/.env
```
8
.
Reload the environment variables into Meltano by restarting the service
7
.
Reload the environment variables into Meltano by restarting the service
```
bash
systemctl restart meltano
...
...
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