Webapp for URL Checker, a tool to easily check URLs in a sitemap.
There is a .env
file per environnement which is used only to define API URL.
So just copy .env.development
to .env.production
and set VITE_API_*
according to your setup.
For example:
VITE_API_HTTP=http://url-checker.example.com/graphql
VITE_API_WS=ws://url-checker.example.com/graphql
Once placed in the webapp
directory:
pnpm i -P
pnpm build
This will produce a "build" in the dist
folder.
dist
folder as the DocumentRoot
for the next step.
This is a configuration example using a single vhost for API & Webapp:
<VirtualHost *:80>
DocumentRoot "/srv/http/url-checker.example.com/www"
ServerName url-checker.example.com
<Directory "/srv/http/url-checker.example.com/www">
AllowOverride none
Require all granted
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
ProxyPass /graphql http://localhost:3000/graphql
ProxyPassReverse /graphql http:/localhost:3000/graphql
RewriteEngine On
RewriteCond %{HTTP:Upgrade} websocket [NC]
RewriteCond %{HTTP:Connection} upgrade [NC]
RewriteRule ^/graphql "ws://localhost:3000/graphql" [P,L]
ErrorLog "/srv/http/url-checker.example.com/log/httpd-error.log"
CustomLog "/srv/http/url-checker.example.com/log/httpd-access.log" common
</VirtualHost>
ℹ️ Basically, it's a regular SPA webapp using Vite bundler so you can serve it with any web server of your choice (Apache, Nginx...). Also, you are not forced to use a vhost
if only URL Checker is served by your web server.
The simplest way to upgrade the webapp is using the following git
commands in the monorepo directory (where .git
stands):
git fetch
git reset --hard origin/master
Then redo the Install dependencies for Production and Compile and Minify for Production steps.
ℹ️ Notice that this will upgrade both API and Webapp so don't forget to also follow API upgrade instructions.
The awesome design of this webapp was done gracefully by Jade Mlynarz, many thanks to her! 😘
Following this instructions is needed only if you want to contribute to the code of the webapp.
See Vite Configuration Reference.
pnpm i
pnpm dev
Lint with ESLint
pnpm lint