- make sure you have
python
andpip
installed
git clone https://github.com/ysh1th/intern-city.git
cd <repository-directory>
python -m venv .venv
source .venv/bin/activate # for mac os
.env\Scripts\activate # for windows
pip install -r requirements.txt
- Sign up for the Google Cloud Platform and create a new project.
- Enable the Google Maps JavaScript API and Places API.
- Generate an API key.
- Create a
.env
file in the project directory and add you API key:
GOOGLE_MAPS_API=<your_api_key>
streamlit run app.py
To contribute to the repository:
- Fork the repository
- Create a new branch using the following command:
git checkout -b your-branch-name
- Make your changes and commit using the following commands:
git add .
git commit -m "commit-message"
git push origin your-branch-name
- Open a pull request