Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 638 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 638 Bytes
Vocabulary is a resource to learn foreign language words.
X-Powered by Go on the server side, Mongo DB to store data and Knockout JS on the front end.
To run the application you need to install Go (golang) from https://golang.org/doc/install
Setup $GOROOT and $GOPATH to be able to download third party packages.

Download and run Mongo DB server.

To use JSON Web Token generate public and private keys using the command:

$ openssl genrsa -out demo.rsa 1024 # the 1024 is the size of the key we are generating
$ openssl rsa -in demo.rsa -pubout > demo.rsa.pub