-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed Examples In Network and Countries page (#713) * Integrating IYP to IHR (#719) * Add IYP search & change networks route * Add IYP AS page * Add IYP IXP page * Flat IYP table * bug fixed * Add IYP Prefix page * fix ipv6 prefix * Add IYP tags page * Add IYP Domain Name page * Integrate AS report page with IYP page * Add event listener in treemaps * Comment out language switcher from header * Add IYP country page & fix search & fix routes * fix route in country overview * Upgrade packages * Merge #724 * Add doc and change IYP legend route to IYP * fix headings and overview padding * Increase expandable bars headline * Docs updated * Remove unnecessary comments * Add ip-address lib which replaces prefix regex * Replace variables in cypher queries when displayed * AS new layout init * ASOverview added in new layout * Add date filter in AS layout * Init Generic Card Controller * Monitor tab completed in new layout * Add ASPeers in new layout * Routing tab completed * DNS tab completed * Peering tab completed * Registration tab completed * Prototype for the new AS network layout completed * fix bug in locale url init * fix bug in url set after search as network * As layout can select widget in custom tab * Add day report to widgets * Country new layout added * Prefix new layout init * Prefix new layout completed * Host Name completed & Tag custom init * Tag new layout completed * Add hast name and tag pages to menu * Add metadata in iyp views dynamically * Fix metadata reference time and url in layout * Add func to copy cypher query * Fix metadata cypher dynamic query * Add anchor tag to each widget * Add links from the overview to the widgets * Init Ranking page * Add Rank page * Fix style in cypher btn & limit rank res to 100K * fix websocket in iyp * Init transforming IYP websocket to HTTP req * Replace neo4j driver with HTTP requests * Fix scroll to anchor * Fix routing with active tab * IXP new layout completed * fix location search bar in network delay * Bug fixes * Convert DomaiName node to HostName * Add redirection from the old locale * Add Dockerfile and deploy instruction on README.md * Add github action to test docker image * Creating new UI for loading page * Update metadata table info * Add margin between logo in loading page * Add version badge to footer logo * Fix layout and update readme * Update readme * Bug fixes and UI improvements * Fix originated column in prefix overview * Remove links from overview indexes, update Prominent query, fix AS tag chart * Bug fixes in tag's treemap chart * Apply PR #713 to Host Name, Tag and Rank pages * Fix top rank in network overview & replace Host Name to Hostname --------- Co-authored-by: Dimitrios Panteleimon Giakatos <[email protected]> --------- Co-authored-by: Arnab Ghosh <[email protected]> Co-authored-by: Dimitrios Panteleimon Giakatos <[email protected]> Co-authored-by: Dimitrios Panteleimon Giakatos <[email protected]>
- Loading branch information
1 parent
31301dc
commit 7ba872e
Showing
128 changed files
with
9,789 additions
and
866 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build the Docker image | ||
run: docker build . --file Dockerfile --tag ihr-website:$(date +%s) |
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 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM node:20.10.0 AS builder | ||
WORKDIR /app | ||
COPY . . | ||
RUN npm install && npm run build | ||
FROM nginx:stable-alpine-slim | ||
WORKDIR /app | ||
COPY --from=builder /app/dist /usr/share/nginx/html | ||
COPY --from=builder /app/default.conf /etc/nginx/conf.d/default.conf | ||
EXPOSE 80 |
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
File renamed without changes.
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,47 @@ | ||
server { | ||
listen 80; | ||
listen [::]:80; | ||
server_name localhost; | ||
|
||
#access_log /var/log/nginx/host.access.log main; | ||
|
||
location / { | ||
root /usr/share/nginx/html; | ||
index index.html index.htm; | ||
include /etc/nginx/mime.types; | ||
try_files $uri $uri/ /index.html; | ||
} | ||
|
||
#error_page 404 /404.html; | ||
|
||
# redirect server error pages to the static page /50x.html | ||
# | ||
error_page 500 502 503 504 /50x.html; | ||
location = /50x.html { | ||
root /usr/share/nginx/html; | ||
} | ||
|
||
# proxy the PHP scripts to Apache listening on 127.0.0.1:80 | ||
# | ||
#location ~ \.php$ { | ||
# proxy_pass http://127.0.0.1; | ||
#} | ||
|
||
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 | ||
# | ||
#location ~ \.php$ { | ||
# root html; | ||
# fastcgi_pass 127.0.0.1:9000; | ||
# fastcgi_index index.php; | ||
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; | ||
# include fastcgi_params; | ||
#} | ||
|
||
# deny access to .htaccess files, if Apache's document root | ||
# concurs with nginx's one | ||
# | ||
#location ~ /\.ht { | ||
# deny all; | ||
#} | ||
} | ||
|
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.