mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
12 lines
209 B
Python
Executable File
12 lines
209 B
Python
Executable File
#!/usr/bin/env python
|
|
"""Django's command-line utility for administrative tasks."""
|
|
import os
|
|
|
|
|
|
def main():
|
|
print("SECRET_KEY: {0}".format(os.getenv('SECRET_KEY')))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|