Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codewithcharan/boston-house-pricing
https://github.com/codewithcharan/boston-house-pricing
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/codewithcharan/boston-house-pricing
- Owner: CodeWithCharan
- Created: 2024-03-13T13:34:10.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-13T14:24:15.000Z (11 months ago)
- Last Synced: 2024-03-13T15:42:23.494Z (11 months ago)
- Language: Jupyter Notebook
- Homepage: https://bostonhousepricing-iljp.onrender.com
- Size: 1.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Boston House Pricing
To access the application, visit the [Boston House Pricing website](https://bostonhousepricing-iljp.onrender.com)
## Docker
1. Pull the docker image:
```bash
docker pull codewithcharan/bostonhousepricing:flask
```2. Run the docker image:
```bash
docker run -p 5000:5000 -e PORT=5000 codewithcharan/bostonhousepricing:flask
```3. Once the Docker container is running, the application will be accessible at:
- `localhost:5000`
- `127.0.0.1:5000`
- `YourIPv4Address:5000`## Git
1. Clone the repository:
```bash
git clone https://github.com/CodeWithCharan/Boston-House-Pricing.git
```2. Create a `virtual environment` (optional): [Virtual Environment Set Up](https://github.com/CodeWithCharan/virtual-env-setup)
3. Install the required dependencies:
```bash
pip install -r requirements.txt
```4. Run the app.py:
```bash
python app.py
```5. After running the app.py, it will be available at:
- `localhost:5000`
- `127.0.0.1:5000`