-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Docker build local * Update dependabot.yml * Revised Handbook, added Formulas * Added SECURITY doc * Updated notice as per docs * Handbook on first login #311 * Updates echo to v4 * Installation docs * Update to Node 18 in CI, minimum Node 16 * Updated Yarn * Replace Vue CLI with Vite * Migrated to Vite * Merged, web3 v4 * Yarn upgrade * Yarn merged * Updated to Axios 1.6.0 * Updated Vue/Vite imports * Use ReconnectingWebsocket lib * CircleCI Node 18.19 tag * CircleCI Node 18.19 tag * Major semver dev deps * Fix echo-contrib Middleware * Make fmt in session.go * Mod tidy * Added missing js dependency: reconnecting-websocket * Revert yarn lock * Reverted ui to preprod branch * Go 1.21, Node 16, VERSION file --------- Co-authored-by: Oleg Lavrovsky <[email protected]>
- Loading branch information
Showing
33 changed files
with
74 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.5 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,11 +12,10 @@ Here is the list of dependencies: | |
+ go (1.10+, 64bit for Windows) | ||
+ GOBIN added to your PATH (to check your GOBIN: `echo $(go env GOPATH)/bin`) | ||
+ curl | ||
+ yarn (1.12+) | ||
+ node (14) | ||
+ vue-cli | ||
+ git | ||
+ docker-compose (18.06.0+) | ||
+ yarn (1.12+) | ||
+ node (16+) | ||
+ docker-compose (18+) | ||
+ wget (for godoc generation) | ||
+ (OSX) Brew Package Manager | ||
+ (OSX) Command Line Tools (Xcode) | ||
|
@@ -29,12 +28,11 @@ sudo apt-get install make golang curl npm git | |
``` | ||
|
||
#### OSX | ||
|
||
If you currently do not have the OSX `Command Line Tools` installed run | ||
``` | ||
xcode-select --install | ||
``` | ||
|
||
``` | ||
xcode-select --install | ||
brew install make golang curl npm git | ||
``` | ||
|
||
|
@@ -44,6 +42,7 @@ PATH=$PATH:$(go env GOPATH)/bin | |
``` | ||
|
||
### Clone repository | ||
|
||
The project uses go modules. | ||
|
||
Clone the repository outside your GOPATH: | ||
|
@@ -54,21 +53,12 @@ cd proxeus-core | |
``` | ||
|
||
### Build | ||
|
||
All the build projects are stated in `./Makefile`. | ||
|
||
Before building Proxeus, make sure to set all [required environment variables](../README.md#quick-start-with-docker). | ||
``` | ||
export PROXEUS_DATA_DIR=./data | ||
export PROXEUS_INFURA_API_KEY=<Your Infura project ID> | ||
export PROXEUS_SPARKPOST_API_KEY=<Your SparkPost API Key> | ||
export PROXEUS_ENCRYPTION_SECRET_KEY=<A 32-character random string> | ||
export PROXEUS_BLOCKCHAIN_CONTRACT_ADDRESS=0x1d3e5c81bf4bc60d41a8fbbb3d1bae6f03a75f71 | ||
export PROXEUS_ALLOW_HTTP=true | ||
export PROXEUS_PLATFORM_DOMAIN=localhost | ||
export [email protected] | ||
Before building Proxeus, make sure to set all [required environment variables](build_docker.md) (i.e. with an `.env` file). | ||
|
||
``` | ||
Make sure that the email domain for `PROXEUS_EMAIL_FROM` is a configured sending domain in sparkpost | ||
Make sure that the email domain for `PROXEUS_EMAIL_FROM` is a configured sending domain in Sparkpost. | ||
|
||
To initialize dependencies run: | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# Tests | ||
|
||
|
||
The following command runs all the tests without test coverage: | ||
|
||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.