The frontend of next-generation SYZOJ.
Clone this git repo and install dependencies:
$ git clone [email protected]:syzoj/syzoj-ng-app.git
$ cd syzoj-ng-app
$ yarn
By default this app listens on 0.0.0.0:3000
, you can change this with the environment variables PORT
and HOST
. You can use nginx as reversed proxy to access the app with a domain name like syzoj-ng-app.test
.
Start syzoj-ng API server. For example, if the API server in accessible on http://syzoj-ng.test
, the API endpoint is actually http://syzoj-ng.test
(without /api
).
- If the API endpoint is not the same as the syzoj-ng-app's root url, you should replace the
__api_endpoint__
string in syzoj-ng-app's HTML (e.g. with Nginx'sngx_http_sub_module
module) with the API endpoint (in the form of JS expression, e.g."http://syzoj-ng.test"
). - To change the initial title of the page, replace
__default_title__
. - To load compiled frontend resources from another host, replace
__public_path__
. - To load polyfills from another polyfill-service host, replace
__polyfill_service__
. - To change the favicon, replace
__favicon__
.
All these replacements work in development or production environment.
Here's a Nginx development configuration file for reference (don't forget to add the .test
domains to your hosts
or local DNS server):
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
server_name syzoj-ng-app.test;
listen 80;
location / {
proxy_read_timeout 300s;
proxy_send_timeout 300s;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Accept-Encoding "";
sub_filter '__default_title__' '"Default Title"';
sub_filter '__api_endpoint__' '"http://syzoj-ng.test"';
sub_filter_once on;
proxy_pass http://127.0.0.1:3000;
}
}
server {
server_name syzoj-ng.test;
listen 80;
location / {
proxy_read_timeout 300s;
proxy_send_timeout 300s;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:2002;
}
}
If you run API server and the frontend app server on different origins like me, you should enable crossOrigin
in this server's config and configure the API server to white list this server's origin. For example, if you access this server on http://syzoj-ng-app.test
:
security:
crossOrigin:
enabled: true
whiteList:
- http://syzoj-ng-app.test
Start the development server:
$ yarn start
Wait for webpack to finish compilation and the development server to start, then open http://syzoj-ng-app.test
.