An application for tracking social media statstics and follower sentiment.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install the software and how to install them:
- ASP.NET Core 2.1
- angular cli
- Node.js
Build the project, either through Visual Studio or by running:
cd sm-analytic/sm-analytic
dotnet build
After the project is built, run:
dotnet run
And go to localhost:5000
in your browser.
TBD
We could probably use this guide for deploying and hosting this sort of application. And/or maybe this one for publishing to Azure?
The process might be something like:
- Run
dotnet publish
to compile app code and copy the files required to run the app to thedist
orpublish
folder. - Set up an appropriate process manager on the VM (I think we have Nginx right now, but we might need to switch to IIS or Windows Service)
- Copy the output of
dotnet publish
to the VM/server.
We might want to automate our deployments, so that we don't need to assign a single person to it. IMO it'd be ideal if we deployed every time our master branch was updated. We might be able to use Travis CI for this...? Or maybe Azure? Somehow.
- .NET Core - backend framework
- Angular - frontend framework
- Bootstrap 4 - css framework
More should be added here later.
This app was bootstrapped using this guide.