> For the complete documentation index, see [llms.txt](https://docs.arsenic.smartfoloo.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arsenic.smartfoloo.space/deployment/running-locally.md).

# Running locally

You can run arsenic on a local device or server by running the following commands:

```bash
git clone https://github.com/smartfoloo/arsenic.git

cd arsenic

npm i

npm start
```

Or, if you are using a process manager like PM2, for example,

```bash
git clone https://github.com/smartfoloo/arsenic.git

cd arsenic

npm i

pm2 start src/index.js
```
