Skip to content

Commit

Permalink
github migrated
Browse files Browse the repository at this point in the history
  • Loading branch information
traceypooh committed Nov 4, 2024
1 parent c86dd42 commit faa1fde
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 18 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
on: [push, workflow_dispatch]
jobs:
cicd:
# https://github.com/internetarchive/cicd
uses: internetarchive/cicd/.github/workflows/cicd.yml@main
with:
NOMAD_VAR_HOSTNAMES: '["www"]'
secrets:
NOMAD_TOKEN_EXT: ${{ secrets.NOMAD_TOKEN_EXT }}
11 changes: 11 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
on:
workflow_call:

jobs:
lint:
runs-on: ubuntu-latest
container:
image: ghcr.io/internetarchive/dyno:main
steps:
- uses: actions/checkout@v4
- run: /app/lint
14 changes: 0 additions & 14 deletions .gitlab-ci.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# archive.org website prototype - using only javascript static files

## live site / demo
https://internetarchive-www.dev.archive.org
https://internetarchive-www.ext.archive.org

leverages native `web components` and lightweight `lit` helper

## Quickstart
```
git clone git@gitlab.com:internetarchive/www
git clone git@github.com:internetarchive/www
```


Expand Down
4 changes: 2 additions & 2 deletions www/js/search-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ export class SearchPage extends LitElement {

render() {
return html`
<a href="https://gitlab.com/internetarchive/www">
<a href="https://github.com/internetarchive/www">
<img style="float:right; height:75px; width:75px; border-radius:38px" src="/img/ia3.gif"/>
</a>
<h1 style="text-align:center"> archive.org JS Single Page App using web components </h1>
<small style="position:absolute; right:10px; bottom:10px">
<i><a href="https://gitlab.com/internetarchive/www">repo</a></i>
<i><a href="https://github.com/internetarchive/www">repo</a></i>
</small>
<search-results query="${this.query}"></search-results>
Expand Down

0 comments on commit faa1fde

Please sign in to comment.