Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shamoda/multi-cloud-iac-adaptor
https://github.com/shamoda/multi-cloud-iac-adaptor
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/shamoda/multi-cloud-iac-adaptor
- Owner: shamoda
- Created: 2023-08-11T03:14:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-23T17:47:41.000Z (10 months ago)
- Last Synced: 2024-11-05T14:50:22.597Z (2 months ago)
- Language: Python
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Multi Cloud IAC Adaptor
## Requirements
* Python 3.8.10
* pip3### Please Note: It is highly encouraged to continue the development process in a Virtual Env
### To setup local development environment,
1. Create a virtual environment
1. To create virtual env: `python -m virtualenv venv`
2. To change dir to Scripts: `cd venv/Scripts`
3. To activate virtual env: `activate`
4. After the 3rd step you your CLI prompt should changed to **(venv) C:...**
5. Move back to root folder: `cd ../..`
2. Install all the packages using requirements.txt
1. `pip install -r requirements.txt `
3. Setup env variables to virtual env
1. `set FLASK_ENV=development`
2. `set FLASK_APP=server.py`
3. `set PYTHONDONTWRITEBYTECODE=1`### To run the application: `flask run`
### To freeze your pip packages in to requirements.txt file:
* `pip freeze > requirements.txt`
* Only issue the above freeze command, if you are working in a virtual env or your global pip list does not contains any other unnecessary pip packages.