-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHome.py
More file actions
81 lines (58 loc) · 1.75 KB
/
Home.py
File metadata and controls
81 lines (58 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import streamlit as st
st.markdown("""
# :fire: Welcome to AWS GUI for Localstack
## Overview
This application provides a graphical interface to manage Amazon S3 and AWS Secrets Manager on Localstack.
Easily upload, view, and manage your S3 files and create, read, and update your AWS secrets.
---
## S3 Features :white_check_mark:
- create bucket
- list buckets
- delete bucket
- add object to a bucket
- list bucket objects
- see object details
- remove object from a bucket
- download an object from a bucket
- change AWS endpoint url
## Secrets Manager Features :white_check_mark:
- create secret
- list secrets
- delete secret
- see secret details
- see secret value
- change AWS endpoint url
---
## System Requirements and set-up
- you should have docker and docker-compose installed
- you should have a localstack container running on docker. Follow the below instructions to create one
```
cd localstack_gui/res
docker-compose -f docker-compose-localstack.yml up -d # to pull localstack image and run it into a docker container
docker ps # to check if the localstack container has been created and it is running
```
- you should have python 3.12 & install app's requirements
```sh
cd localstack_gui
pip install -r requirements.txt
```
---
## .EXE file
> The app can be executed using an .exe file.
```sh
cd localstack_gui/dist
run.exe # this is the executable file
```
SUGGESTION: create a link to this .exe file and place it where you want. You can even add it to the PATH environment variable.
## Raw script usage
1. follow the above set-up instructions
2. run streamlit gui with the command
```sh
cd localstack_gui
streamlit run ./Home.py
```
---
## Contribute
This is an open-source project, any contribution is appreciated.
Thank You :raised_hands:
""")