Setup¶
Clone the Repository¶
- Clone the repository
- Copy the
App.config.example
toApp.config
Customizing App.config¶
The App.config
file contains important settings for your application. Here's how to customize it:
<appSettings>
<add key="DevMode" value="True"/>
<add key="GoogleMapsApiKey" value="Enter your Google Maps Static API Key"/>
<add key="ConnectionString1" value="server=localhost;port=3306;user id=root; password=rootpassword;database=itp4915m_se1d_group4;charset=utf8;ConnectionTimeout=30"/>
<!-- Additional connection strings if needed -->
</appSettings>
Key Settings¶
- DevMode: Set to "True" for development, "False" for production
- GoogleMapsApiKey: Replace with your actual Google Maps Static API Key
- ConnectionString1: Customize based on your chosen database setup method