├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CONCEPTS.md ├── Festify.Emailer ├── Festify.Emailer.csproj ├── Program.cs └── ShowAddedHandler.cs ├── Festify.Indexer.UnitTest ├── Festify.Indexer.UnitTest.csproj ├── HandlerTests.cs └── InMemoryRepository.cs ├── Festify.Indexer ├── Documents │ ├── ActDescription.cs │ ├── ActDocument.cs │ ├── ShowDocument.cs │ ├── VenueDescription.cs │ ├── VenueDocument.cs │ └── VenueLocation.cs ├── Elasticsearch │ └── ElasticsearchRepository.cs ├── Festify.Indexer.csproj ├── Handlers │ ├── ActDescriptionChangedHandler.cs │ ├── ShowAddedHandler.cs │ ├── VenueDescriptionChangedHandler.cs │ └── VenueLocationChangedHandler.cs ├── IRepository.cs ├── Program.cs └── Updaters │ ├── ActUpdater.cs │ └── VenueUpdater.cs ├── Festify.Promotion.Messages.UnitTest ├── Festify.Promotion.Messages.UnitTest.csproj └── VersionTest.cs ├── Festify.Promotion.Messages ├── Acts │ ├── ActDescriptionChanged.cs │ ├── ActDescriptionRepresentation.cs │ └── ActRepresentation.cs ├── Festify.Promotion.Messages.csproj ├── Shows │ ├── ShowAdded.cs │ └── ShowRepresentation.cs └── Venues │ ├── VenueDescriptionChanged.cs │ ├── VenueDescriptionRepresentation.cs │ ├── VenueLocationChanged.cs │ ├── VenueLocationRepresentation.cs │ ├── VenueRepresentation.cs │ └── VenueTimeZoneRepresentation.cs ├── Festify.Promotion.UnitTest ├── ActTests.cs ├── Festify.Promotion.UnitTest.csproj ├── ShowTests.cs └── VenueTests.cs ├── Festify.Promotion ├── Acts │ ├── Act.cs │ ├── ActCommands.cs │ ├── ActConfiguration.cs │ ├── ActDescription.cs │ ├── ActDescriptionConfiguration.cs │ ├── ActDescriptionNotifier.cs │ ├── ActInfo.cs │ ├── ActQueries.cs │ ├── ActRemoved.cs │ ├── ActRemovedConfiguration.cs │ ├── ActViewModel.cs │ └── ActsController.cs ├── Contents │ ├── Content.cs │ ├── ContentCommands.cs │ ├── ContentConfiguration.cs │ ├── ContentController.cs │ └── ContentQueries.cs ├── Data │ ├── Dispatcher.cs │ ├── INotifier.cs │ └── PromotionContext.cs ├── Festify.Promotion.csproj ├── GlobalUsings.cs ├── Home │ └── HomeController.cs ├── Migrations │ ├── 20201115230954_AddVenueTable.Designer.cs │ ├── 20201115230954_AddVenueTable.cs │ ├── 20201115234919_DefineVenueGuid.Designer.cs │ ├── 20201115234919_DefineVenueGuid.cs │ ├── 20201115235154_RemovedVenueGuidDefault.Designer.cs │ ├── 20201115235154_RemovedVenueGuidDefault.cs │ ├── 20201122215236_AddImmutableRecords.Designer.cs │ ├── 20201122215236_AddImmutableRecords.cs │ ├── 20201122220635_MigrateVenueToImmutableRecords.Designer.cs │ ├── 20201122220635_MigrateVenueToImmutableRecords.cs │ ├── 20201122221242_DropVenuStateColumns.Designer.cs │ ├── 20201122221242_DropVenuStateColumns.cs │ ├── 20201124022110_AddActsShowsAndContents.Designer.cs │ ├── 20201124022110_AddActsShowsAndContents.cs │ ├── 20201129201155_AddVenueLocation.Designer.cs │ ├── 20201129201155_AddVenueLocation.cs │ ├── 20201129201505_AddVenueTimeZone.Designer.cs │ ├── 20201129201505_AddVenueTimeZone.cs │ ├── 20201129214002_AddAlternateKeysToVenueTables.Designer.cs │ ├── 20201129214002_AddAlternateKeysToVenueTables.cs │ └── PromotionContextModelSnapshot.cs ├── Models │ └── ErrorViewModel.cs ├── Pages │ ├── Acts │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Remove.cshtml │ │ └── Remove.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json ├── Shows │ ├── CreateShowViewModel.cs │ ├── Show.cs │ ├── ShowCancelled.cs │ ├── ShowCancelledConfiguration.cs │ ├── ShowCommands.cs │ ├── ShowConfiguration.cs │ ├── ShowInfo.cs │ ├── ShowNotifier.cs │ ├── ShowQueries.cs │ └── ShowsController.cs ├── Startup.cs ├── Venues │ ├── Venue.cs │ ├── VenueCommands.cs │ ├── VenueConfiguration.cs │ ├── VenueDescription.cs │ ├── VenueDescriptionConfiguration.cs │ ├── VenueDescriptionNotifier.cs │ ├── VenueInfo.cs │ ├── VenueLocation.cs │ ├── VenueLocationConfiguration.cs │ ├── VenueLocationNotifier.cs │ ├── VenueQueries.cs │ ├── VenueRemoved.cs │ ├── VenueTimeZone.cs │ ├── VenueTimeZoneConfiguration.cs │ ├── VenueViewModel.cs │ └── VenuesController.cs ├── Views │ ├── Acts │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Shows │ │ ├── Create.cshtml │ │ └── Delete.cshtml │ ├── Venues │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── images │ └── NoImage.jpg │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Festify.sln ├── LICENSE ├── Notebooks ├── Indexer.ipynb ├── Model.ipynb ├── Venues.ipynb └── VenuesPage.png ├── README.md ├── Samples ├── Collier.jpeg ├── Enrique.jpg ├── Flecktones.png ├── Fluffy.jpg ├── Foxworthy.png ├── Jefafa.jpg └── Julio.jpg └── Scripts ├── pull.sh ├── startelasticsearch.sh ├── startrabbitmq.sh └── startsql.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONCEPTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/CONCEPTS.md -------------------------------------------------------------------------------- /Festify.Emailer/Festify.Emailer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Emailer/Festify.Emailer.csproj -------------------------------------------------------------------------------- /Festify.Emailer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Emailer/Program.cs -------------------------------------------------------------------------------- /Festify.Emailer/ShowAddedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Emailer/ShowAddedHandler.cs -------------------------------------------------------------------------------- /Festify.Indexer.UnitTest/Festify.Indexer.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer.UnitTest/Festify.Indexer.UnitTest.csproj -------------------------------------------------------------------------------- /Festify.Indexer.UnitTest/HandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer.UnitTest/HandlerTests.cs -------------------------------------------------------------------------------- /Festify.Indexer.UnitTest/InMemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer.UnitTest/InMemoryRepository.cs -------------------------------------------------------------------------------- /Festify.Indexer/Documents/ActDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Documents/ActDescription.cs -------------------------------------------------------------------------------- /Festify.Indexer/Documents/ActDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Documents/ActDocument.cs -------------------------------------------------------------------------------- /Festify.Indexer/Documents/ShowDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Documents/ShowDocument.cs -------------------------------------------------------------------------------- /Festify.Indexer/Documents/VenueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Documents/VenueDescription.cs -------------------------------------------------------------------------------- /Festify.Indexer/Documents/VenueDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Documents/VenueDocument.cs -------------------------------------------------------------------------------- /Festify.Indexer/Documents/VenueLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Documents/VenueLocation.cs -------------------------------------------------------------------------------- /Festify.Indexer/Elasticsearch/ElasticsearchRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Elasticsearch/ElasticsearchRepository.cs -------------------------------------------------------------------------------- /Festify.Indexer/Festify.Indexer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Festify.Indexer.csproj -------------------------------------------------------------------------------- /Festify.Indexer/Handlers/ActDescriptionChangedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Handlers/ActDescriptionChangedHandler.cs -------------------------------------------------------------------------------- /Festify.Indexer/Handlers/ShowAddedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Handlers/ShowAddedHandler.cs -------------------------------------------------------------------------------- /Festify.Indexer/Handlers/VenueDescriptionChangedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Handlers/VenueDescriptionChangedHandler.cs -------------------------------------------------------------------------------- /Festify.Indexer/Handlers/VenueLocationChangedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Handlers/VenueLocationChangedHandler.cs -------------------------------------------------------------------------------- /Festify.Indexer/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/IRepository.cs -------------------------------------------------------------------------------- /Festify.Indexer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Program.cs -------------------------------------------------------------------------------- /Festify.Indexer/Updaters/ActUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Updaters/ActUpdater.cs -------------------------------------------------------------------------------- /Festify.Indexer/Updaters/VenueUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Indexer/Updaters/VenueUpdater.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages.UnitTest/Festify.Promotion.Messages.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages.UnitTest/Festify.Promotion.Messages.UnitTest.csproj -------------------------------------------------------------------------------- /Festify.Promotion.Messages.UnitTest/VersionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages.UnitTest/VersionTest.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Acts/ActDescriptionChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Acts/ActDescriptionChanged.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Acts/ActDescriptionRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Acts/ActDescriptionRepresentation.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Acts/ActRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Acts/ActRepresentation.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Festify.Promotion.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Festify.Promotion.Messages.csproj -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Shows/ShowAdded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Shows/ShowAdded.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Shows/ShowRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Shows/ShowRepresentation.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Venues/VenueDescriptionChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Venues/VenueDescriptionChanged.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Venues/VenueDescriptionRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Venues/VenueDescriptionRepresentation.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Venues/VenueLocationChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Venues/VenueLocationChanged.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Venues/VenueLocationRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Venues/VenueLocationRepresentation.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Venues/VenueRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Venues/VenueRepresentation.cs -------------------------------------------------------------------------------- /Festify.Promotion.Messages/Venues/VenueTimeZoneRepresentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.Messages/Venues/VenueTimeZoneRepresentation.cs -------------------------------------------------------------------------------- /Festify.Promotion.UnitTest/ActTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.UnitTest/ActTests.cs -------------------------------------------------------------------------------- /Festify.Promotion.UnitTest/Festify.Promotion.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.UnitTest/Festify.Promotion.UnitTest.csproj -------------------------------------------------------------------------------- /Festify.Promotion.UnitTest/ShowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.UnitTest/ShowTests.cs -------------------------------------------------------------------------------- /Festify.Promotion.UnitTest/VenueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion.UnitTest/VenueTests.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/Act.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/Act.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActCommands.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActDescription.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActDescriptionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActDescriptionConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActDescriptionNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActDescriptionNotifier.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActInfo.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActQueries.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActRemoved.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActRemovedConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActRemovedConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActViewModel.cs -------------------------------------------------------------------------------- /Festify.Promotion/Acts/ActsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Acts/ActsController.cs -------------------------------------------------------------------------------- /Festify.Promotion/Contents/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Contents/Content.cs -------------------------------------------------------------------------------- /Festify.Promotion/Contents/ContentCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Contents/ContentCommands.cs -------------------------------------------------------------------------------- /Festify.Promotion/Contents/ContentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Contents/ContentConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Contents/ContentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Contents/ContentController.cs -------------------------------------------------------------------------------- /Festify.Promotion/Contents/ContentQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Contents/ContentQueries.cs -------------------------------------------------------------------------------- /Festify.Promotion/Data/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Data/Dispatcher.cs -------------------------------------------------------------------------------- /Festify.Promotion/Data/INotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Data/INotifier.cs -------------------------------------------------------------------------------- /Festify.Promotion/Data/PromotionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Data/PromotionContext.cs -------------------------------------------------------------------------------- /Festify.Promotion/Festify.Promotion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Festify.Promotion.csproj -------------------------------------------------------------------------------- /Festify.Promotion/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/GlobalUsings.cs -------------------------------------------------------------------------------- /Festify.Promotion/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Home/HomeController.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201115230954_AddVenueTable.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201115230954_AddVenueTable.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201115230954_AddVenueTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201115230954_AddVenueTable.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201115234919_DefineVenueGuid.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201115234919_DefineVenueGuid.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201115234919_DefineVenueGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201115234919_DefineVenueGuid.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201115235154_RemovedVenueGuidDefault.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201115235154_RemovedVenueGuidDefault.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201115235154_RemovedVenueGuidDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201115235154_RemovedVenueGuidDefault.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201122215236_AddImmutableRecords.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201122215236_AddImmutableRecords.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201122215236_AddImmutableRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201122215236_AddImmutableRecords.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201122220635_MigrateVenueToImmutableRecords.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201122220635_MigrateVenueToImmutableRecords.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201122220635_MigrateVenueToImmutableRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201122220635_MigrateVenueToImmutableRecords.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201122221242_DropVenuStateColumns.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201122221242_DropVenuStateColumns.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201122221242_DropVenuStateColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201122221242_DropVenuStateColumns.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201124022110_AddActsShowsAndContents.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201124022110_AddActsShowsAndContents.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201124022110_AddActsShowsAndContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201124022110_AddActsShowsAndContents.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201129201155_AddVenueLocation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201129201155_AddVenueLocation.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201129201155_AddVenueLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201129201155_AddVenueLocation.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201129201505_AddVenueTimeZone.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201129201505_AddVenueTimeZone.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201129201505_AddVenueTimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201129201505_AddVenueTimeZone.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201129214002_AddAlternateKeysToVenueTables.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201129214002_AddAlternateKeysToVenueTables.Designer.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/20201129214002_AddAlternateKeysToVenueTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/20201129214002_AddAlternateKeysToVenueTables.cs -------------------------------------------------------------------------------- /Festify.Promotion/Migrations/PromotionContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Migrations/PromotionContextModelSnapshot.cs -------------------------------------------------------------------------------- /Festify.Promotion/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Acts/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Acts/Index.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Acts/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Acts/Index.cshtml.cs -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Acts/Remove.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Acts/Remove.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Acts/Remove.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Acts/Remove.cshtml.cs -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Error.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Index.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Program.cs -------------------------------------------------------------------------------- /Festify.Promotion/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Properties/launchSettings.json -------------------------------------------------------------------------------- /Festify.Promotion/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /Festify.Promotion/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /Festify.Promotion/Shows/CreateShowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/CreateShowViewModel.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/Show.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/Show.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/ShowCancelled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/ShowCancelled.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/ShowCancelledConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/ShowCancelledConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/ShowCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/ShowCommands.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/ShowConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/ShowConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/ShowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/ShowInfo.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/ShowNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/ShowNotifier.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/ShowQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/ShowQueries.cs -------------------------------------------------------------------------------- /Festify.Promotion/Shows/ShowsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Shows/ShowsController.cs -------------------------------------------------------------------------------- /Festify.Promotion/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Startup.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/Venue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/Venue.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueCommands.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueDescription.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueDescriptionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueDescriptionConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueDescriptionNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueDescriptionNotifier.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueInfo.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueLocation.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueLocationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueLocationConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueLocationNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueLocationNotifier.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueQueries.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueRemoved.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueTimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueTimeZone.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueTimeZoneConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueTimeZoneConfiguration.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenueViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenueViewModel.cs -------------------------------------------------------------------------------- /Festify.Promotion/Venues/VenuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Venues/VenuesController.cs -------------------------------------------------------------------------------- /Festify.Promotion/Views/Acts/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Acts/Create.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Acts/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Acts/Delete.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Acts/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Acts/Details.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Acts/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Acts/Edit.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Acts/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Acts/Index.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Shows/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Shows/Create.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Shows/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Shows/Delete.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Venues/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Venues/Create.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Venues/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Venues/Delete.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Venues/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Venues/Details.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Venues/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Venues/Edit.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/Venues/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/Venues/Index.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Festify.Promotion/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/appsettings.Development.json -------------------------------------------------------------------------------- /Festify.Promotion/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/appsettings.json -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/css/site.css -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/images/NoImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/images/NoImage.jpg -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/js/site.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Festify.Promotion/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.Promotion/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Festify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Festify.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/LICENSE -------------------------------------------------------------------------------- /Notebooks/Indexer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Notebooks/Indexer.ipynb -------------------------------------------------------------------------------- /Notebooks/Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Notebooks/Model.ipynb -------------------------------------------------------------------------------- /Notebooks/Venues.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Notebooks/Venues.ipynb -------------------------------------------------------------------------------- /Notebooks/VenuesPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Notebooks/VenuesPage.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/README.md -------------------------------------------------------------------------------- /Samples/Collier.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Samples/Collier.jpeg -------------------------------------------------------------------------------- /Samples/Enrique.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Samples/Enrique.jpg -------------------------------------------------------------------------------- /Samples/Flecktones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Samples/Flecktones.png -------------------------------------------------------------------------------- /Samples/Fluffy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Samples/Fluffy.jpg -------------------------------------------------------------------------------- /Samples/Foxworthy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Samples/Foxworthy.png -------------------------------------------------------------------------------- /Samples/Jefafa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Samples/Jefafa.jpg -------------------------------------------------------------------------------- /Samples/Julio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Samples/Julio.jpg -------------------------------------------------------------------------------- /Scripts/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Scripts/pull.sh -------------------------------------------------------------------------------- /Scripts/startelasticsearch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Scripts/startelasticsearch.sh -------------------------------------------------------------------------------- /Scripts/startrabbitmq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Scripts/startrabbitmq.sh -------------------------------------------------------------------------------- /Scripts/startsql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellperry/Festify/HEAD/Scripts/startsql.sh --------------------------------------------------------------------------------