-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from SailingSteve/steveWeConnectClient-Dec20-12…
…43am New Login session persisted to postgres, WeConnectSession cookie established on signin
- Loading branch information
Showing
11 changed files
with
31,458 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
# Ignore build files | ||
build | ||
build-live | ||
package-lock.json | ||
|
||
# TernJS | ||
################### | ||
|
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,10 +1,12 @@ | ||
#### Ports used by WeVote developers in their local setups | ||
|
||
| Server | Served by | port | purpose | | ||
|--------------------------------------------------|:-----------------------------:|-----:|:---------------------------| | ||
| "WebApp" React webapp for voters | webpack serve/express | 3000 | Client App -- Voter facing | | ||
| WeVoteServer (Python) API Server for "WebApp" | django runserver/runsslserver | 8000 | API Server -- Python | | ||
| weconnect React webapp for staff | webpack serve/express | 4000 | Client App -- Staff facing | | ||
| weconnect-server (Node) API server for weconnect | express | 4500 | API Server -- Node | | ||
| postgres local server | postgres | 5432 | Database Server | | ||
| Server | Served by | Port | Purpose | Environment Variable Prefixes | | ||
|------------------------------------------------------------------------------------------------|:-----------------------------:|-----:|:---------------------------|:------------------------------| | ||
| ["WebApp"](https://github.com/wevote/WebApp) React webapp for voters | webpack serve/express | 3000 | Client App -- Voter facing | VOTER_FRONT_END_APP_ | | ||
| [WeVoteServer](https://github.com/wevote/WeVoteServer) (Python) API Server for "WebApp" | django runserver/runsslserver | 8000 | API Server -- Python | VOTER_API_SERVER_ | | ||
| [weconnect-client](https://github.com/wevote/weconnect-client) React webapp for staff | webpack serve/express | 4000 | Client App -- Staff facing | STAFF_FRONT_END_APP_ | | ||
| [weconnect-server](https://github.com/wevote/weconnect-server) (Node) API server for weconnect | express | 4500 | API Server -- Node | STAFF_API_SERVER_ | | ||
| postgres local server | postgres | 5432 | Database Server | | ||
|
||
Note: In any of the 4 repositories, the PROTOCOL, HOSTNAME, PORT, etc. names are used with no prefix, and are unambiguous since they always refer to "this" client or server, no matter which repository you are in. | ||
|
Oops, something went wrong.