A poll app for the Dev event pilot
If you're on windows, download git bash so you'll have access to git commands
Follow the directions on the Angular website to download npm and the Angular CLI
Go to the VSCode website and follow the instructions to download VSCode
In a folder of your choice, run
git clone https://github.com/ProgrammersPalace/poll-site.git
This will create a "poll-site" folder in the folder where you ran the command.
In the poll-site folder, locate the frontend
folder and cd into it. Run npm install
to install the packages. This may take a few minutes.
In the frontend
folder, run ng serve
to start the frontend. Once the app is started, you can open a browser and go to localhost:4200
to see the app.
In the backend
folder, run npm run start
to start the backend. Once the backend is started, you can access the api at localhost:3000
.