Run Go server
ATLAS_URI=mongodb+srv://username:password@cluster0.37ogv.mongodb.net go run main.go
Run React App
cd app && yarn dev
Build react app
This will build the app in the Go servers static directory
cd app && yarn build
Compile the go server to binary
go build
source: http://lunar.lyris.com/help/Content/generating_public_and_private_keys.html
To perform the following actions for Windows or Linux, you must have OpenSSL installed on your system.
In Windows:
-
Open the Command Prompt (Start > Programs > Accessories > Command Prompt).
-
Navigate to the following folder: C:\Program Files\ListManager\tclweb\bin\certs
-
Type the following:
openssl genrsa -out rsa.private 1024
-
Press ENTER. The private key is generated and saved in a file named "rsa.private" located in the same folder.
NOTE The number "1024" in the above command indicates the size of the private key. You can choose one of five sizes: 512, 758, 1024, 1536 or 2048 (these numbers represent bits). The larger sizes offer greater security, but this is offset by a penalty in CPU performance. We recommend the best practice size of 1024.
-
At the command prompt, type the following:
openssl rsa -in rsa.private -out rsa.public -pubout -outform PEM
-
Press ENTER. The public key is saved in a file named rsa.public located in the same folder.
-
Open the Terminal.
-
Navigate to the folder with the ListManager directory.
-
Type the following:
openssl genrsa -out rsa.private 1024
-
Press ENTER. The private key is generated and saved in a file named "rsa.private" located in the same folder.
-
Open the Terminal.
-
Type the following:
openssl rsa -in rsa.private -out rsa.public -pubout -outform PEM
-
Press ENTER. The public key is saved in a file named rsa.public located in the same folder.