washingtonstateuniversity / WSU-mapping

This provides maping for all campus locations
GNU General Public License v3.0
1 stars 0 forks source link

WSU-mapping

This project is made to controll the mapping system that is using google maps to present places for WSU to users. View it live here at map.wsu.edu

WSU Campus map preview

How to run localy

This repo doesn't include the config/properties.config file which is what is used to set the database connection. You'll have to create your own. This will look like

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <properties>
    <connectionString>Server=database.wsu.edu;Initial Catalog=campusMap;Integrated Security=SSPI;Persist Security Info=True;User ID=your_db_username;Password=your_password</connectionString>
  </properties>
</configuration>

Run grunt watch when making any alterations to the CSS or the JS

cd CampusMap2010/Content/
grunt watch

NOTE: if you are deploying changes to the site in production, we use a different <connectionString> but the export.sql is the same as what you will run locally.