Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run linter on readme #194

Merged
merged 1 commit into from
Nov 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,27 @@
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.

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

## Project Setup

# Project Setup
- 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 on Windows

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

# Running Locally on Linux
1. `npm use`
2. `npm install`
3. `npm run start`

# Running with Docker
## Running with Docker

`docker build -t webao .`

`docker run -d -it -p 8080:8080 webao`

Loading