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
To run a local version of the project:
cd ClientApp
npm install
npm start
Then visit localhost:4200
to view and interact with the application.
cd ClientApp
npm install --save <package_name>
Used when generating new components, modules, etc.
cd ClientApp
ng <command-name>
Run ng test
from root to run front-end tests.
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 3 - css framework
More should be added here later.
This app was bootstrapped using this guide.