# OKCMS > "Pretty good" > - Steve Jobs ## To run the demo: * npm install * cd examples * node index Server will be running on http://lvh.me:1337/ Admin area available on http://lvh.me:1337/admin/ ## Config To access the admin area, you need to set a username and password. To do that create a file called `.env` in the project directory with the following contents: ``` OK_USER=username OK_PASS=password ``` S3 needs to be configured in the same way: ``` S3_KEY=s3key S3_SECRET=s3secret S3_BUCKET=bucketname ``` ## Deploy Every OKCMS install is deployed with pm2. `pm2 start index.js --name "my-cms"` `pm2 logs` to see logs and `pm2 list` to see running processes and `npm bin`/pm2 show [id] for more process info.