This repository has been archived on 2020-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
magic-app/README.md

43 lines
1.4 KiB
Markdown
Raw Normal View History

2020-06-30 18:37:10 +00:00
# Magic App
2020-06-30 18:08:20 +00:00
A swarm of dreams.
2020-06-30 18:28:47 +00:00
2020-07-01 18:02:19 +00:00
## first.py
Ideas contained within...
- List apps from an `app.json` (points to https://git.autonomic.zone/compose-stacks)
- Clone selected app template and parse configuration for inputs (env vars and secrets)
- Generate a form so those values can be filled out and allow it to be saved
- Save the form inputs to a `db.json` (as a start)
- Deploy an applicaiton to a local swarm (assumes access to local docker socket)
- Create an "edit app" page where the `db.json` is re-called and can be updated
- Make sure re-deploy works (taking care of updating secret and app versions)
## second.py
More ideas...
- Don't try to be smart with the auto-generation, hard-code everything. We
maintain the app template (`compose.yml`) and this code anyway, so we just
need to be aware of each other and keep in sync. This would optimise for
trust and collaboration and not "smart" code.
2020-07-02 12:40:01 +00:00
- Hard-code the secrets/configs required to make the code for generating
versions simpler as well.
## MVP screens
- **App selection screen**: a list of apps, you choose which one you want
- **Install app screen**:a form for installing the application
- **Edit app screen**: re-load the configuration for an app, ability to update it
- **Delete app screen**: remove the app
2020-06-30 19:10:52 +00:00
### Development
2020-06-30 18:28:47 +00:00
```bash
$ python3 -m venv .venv
$ source .venv/bin/activate
2020-06-30 18:28:47 +00:00
$ pip install -r requirements.txt
2020-07-01 17:57:24 +00:00
$ python first.py / second.py / third.py
2020-06-30 18:48:47 +00:00
```