mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
11 lines
147 B
Python
11 lines
147 B
Python
#!/usr/bin/env python
|
|
import os
|
|
|
|
|
|
def main():
|
|
print("SECRET_KEY: {0}".format(os.getenv('SECRET_KEY')))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|