0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GoAdvent Calendar 2024

Day 4

.envファイルに環境変数を設定する

Posted at

.envファイルとは

Goの設定ファイル。環境変数の設定や管理を行うことで
環境ごとに異なる環境変数を設定したりセキュリティを向上させることができる。通常はGitなどのバージョン管理システムに含めないファイルである

.envファイルに環境変数を作る

「環境変数名=値」で設定できる
image.png

環境変数の値をGoのソースで呼び出す

外部パッケージをLoadすることで呼び出すことができる

image.png

<実行結果>
image.png

外部パッケージをダウンロードする方法

ターミナルで「go mod tidy」コマンドを実行すると、importしようとしている外部パッケージをダウンロードできる

image.png

go.sumファイルについて

外部パッケージをダウンロードするとgo.sumファイルが作成される。
このファイルの役割は、依存関係の整合性を保ったりバージョン管理を行うこと。

image.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?