Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alphapeter/letsvote
An application for creating polls where the competitors can add their contributions as voting options and later on vote for a winner. Authentication can be done using an existing Azure AD.
https://github.com/alphapeter/letsvote
azuread golang voting vuejs
Last synced: 23 days ago
JSON representation
An application for creating polls where the competitors can add their contributions as voting options and later on vote for a winner. Authentication can be done using an existing Azure AD.
- Host: GitHub
- URL: https://github.com/alphapeter/letsvote
- Owner: alphapeter
- Created: 2017-11-01T16:27:35.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-11T17:26:34.000Z (over 6 years ago)
- Last Synced: 2024-06-21T08:28:53.785Z (5 months ago)
- Topics: azuread, golang, voting, vuejs
- Language: Go
- Homepage: https://www.runyourvoting.win/
- Size: 3.84 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/alphapeter/letsvote.svg?branch=master)](https://travis-ci.org/alphapeter/letsvote.svg?branch=master)
[![Go Report Card](https://goreportcard.com/badge/github.com/alphapeter/letsvote)](https://goreportcard.com/report/github.com/alphapeter/letsvote)
# Lets vote
# About
This application lets you add polls and manage polls for your organisation.
# Download# Compatibility
# Dependencies
The only dependency required to build the application is the go framework https://golang.org/# Building the application
1. Install, (if not already installed), the go framework https://golang.org/dl/
2. run `go build` in the source directory
3. (optional) rename the main binary to filecommander (or main.exe to filecommander if on windows)# Configuration
example of `settings.json`
```
{
"binding": "0.0.0.0:8080"
}
```if binding is specified as `0.0.0.0:8080` it will listen to all addresses
if binding is specified as `192.168.0.100:80` it will listen to 192.168.0.100 at port 80# Api
# Rebuild the front-end
## Preparations
1. Download and install nodejs from https://nodejs.org (go for the LTS release if you are unsure which version to choose)
2. Install webpack `npm install webpack -g`
3. Install webpack development server `npm install webpack-dev-server -g`
4. Install the additional dependencies run `npm install` in the frontend directory## Developement
The front end is written using vue.js, vuex and webpack. There's no need to recompile the backend during development.
The webpack development server will proxy the api calls to the backend once it is started.
1. Compile and start the backend application, let it listen to port 8080
2. Start webpack-dev-server run `npm run dev` in the frontend directory
3. browse to `localhost:8080` with your favourite browser
4. _make your changes to the code_ and it will update in the browser as you save
5. press `ctrl + c` to stop the dev server## Compile the front end code
* Run `npm run build` to run webpack en embed the content into go
* Compile the go source with the updated front end code