MVCWeather
1.0.0
A clean, modern site for current weather and forecasts. I built this over the course of about a week to experiment with asp.net on linux through .net core. I also wanted to focus on design elements to get a clean look and feel.
Soon..
vagrant up
vagrant ssh
cd /MVCWeather
dotnet restore src/MVCWeather
dotnet restore test/MVCWeather.Tests
dotnet build src/MVCWeather --no-incremental
dotnet build test/MVCWeather.Tests --no-incremental
dotnet test test/MVCWeather.Tests
Prereq: memcache
docker pull memcached
docker run --name something-memcached -d memcached
Run the container
docker build -t tsears/weather ./
docker run -i -t --env-file .env.list -p 127.0.0.1:5000:5000 --link something-memcached:memcache tsears/weather