Skip to content

Commit 49a8175

Browse files
committed
initial commit
0 parents  commit 49a8175

91 files changed

Lines changed: 58813 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy Route Tools to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v5
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
# Upload entire repository
40+
path: '.'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/Structure.md
2+
/hi.html

LICENSE.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Custom License for Route Tools
2+
3+
Copyright © 2026 MainRoute Tools - All Rights Reserved
4+
5+
---
6+
7+
> 1. Grant of Use
8+
9+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software (the "Tools") to use the Tools for personal, educational, or internal business purposes. This includes the right to run the HTML files locally and offline on your own device.
10+
11+
> 2. Restrictions
12+
13+
- No Redistribution: You may not redistribute, sub-license, or sell the source code or the Tools, whether in their original or modified form, without express written permission from the copyright holder.
14+
- No Re-hosting: You may not host these Tools on other websites or public repositories.
15+
- Attribution: You must retain all copyright notices and headers within the HTML files.
16+
17+
> 3. Ownership
18+
19+
The copyright holder retains all ownership, intellectual property rights, and title to the software. This is a license to use the software, not a transfer of ownership.
20+
21+
> 4. Disclaimer of Warranty
22+
23+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY.

0 commit comments

Comments
 (0)