Self-host No-as-a-Service
mainYou can run your own instance of the No-as-a-Service API locally. By default, the server runs on port 3000. You can customize the port using the PORT environment variable.
Follow these steps to set up the server:
- Clone the repository.
- Install dependencies using npm.
- Start the server using npm.
The API will be accessible at http://localhost:3000/no (or your custom port).
# 1. Clone the repository
git clone https://github.com/hotheadhacker/no-as-a-service.git
cd no-as-a-service
# 2. Install dependencies
npm install
# 3. Start the server
npm start
# To start on a custom port (e.g., 5000)
PORT=5000 npm start