Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/AttorneyOnline/webAO
Browse files Browse the repository at this point in the history
  • Loading branch information
stonedDiscord committed Oct 17, 2024
2 parents 75fd8fc + bbf9099 commit 9d598e8
Show file tree
Hide file tree
Showing 9 changed files with 209 additions and 98 deletions.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
# Enable version updates for GitHub Actions
- package-ecosystem: "github-actions"
# Look for GitHub Actions workflows in the `root` directory
directory: "/"
# Check the for updates once a week
schedule:
interval: "weekly"
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14'
cache: 'npm'
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Build Project
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.0.0
uses: JamesIves/github-pages-deploy-action@v4.6.8
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14
- name: Install Dependencies
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,6 @@ node_modules
# webpack shit
*.b.js
*.b.js.*

# Jetbrains
.idea/
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.17.4
v18.12.1
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# webAO

This is a client for the Attorney Online roleplaying chatroom written in HTML and JavaScript.
It works with the any AO server if it has WebSocket support.
It works with any AO server if it has WebSocket support.

Link to the client in this repo: <http://web.aceattorneyonline.com/>

Expand All @@ -10,15 +10,9 @@ Link to the client in this repo: <http://web.aceattorneyonline.com/>
- Install [Node JS](https://nodejs.org/en/)
- Install nvm | [Windows](https://github.com/coreybutler/nvm-windows) , [Linux](https://github.com/nvm-sh/nvm)

## Running Locally on Windows
## Running Locally

1. Look at the file version in `.nvmrc` and run `nvm use <VERSION NUMBER>`
2. `npm install`
3. `npm run start`

## Running Locally on Linux

1. `npm use`
1. `nvm install && nvm use`
2. `npm install`
3. `npm run start`

Expand Down
Loading

0 comments on commit 9d598e8

Please sign in to comment.