Deploy Anywhere
Recommended
Run in Docker
First, install Docker. Then run the following commands in a Linux shell:
image=aiursoft/tracer
appName=tracer
docker pull $image
docker run -d --name $appName --restart unless-stopped -p 5000:5000 -v /var/www/$appName:/data $image
That will start a web server at http://localhost:5000 and you can test the application.
Container Context
| Property | Value |
|---|---|
| Image | aiursoft/tracer |
| Ports | 5000 |
| Binary path | /app |
| Data path | /data |
| Config path | /data/appsettings.json |
Run on Ubuntu
The following script will install or update this application on your Ubuntu server. Supports Ubuntu 25.04.
curl -sL https://gitlab.aiursoft.com/aiursoft/tracer/-/raw/master/install.sh | sudo bash
Or with a custom port:
... | sudo bash -s 8080
Systemd
/opt/apps
Contribute
We're interested in your feedback! You can submit a suggestion or feature request via the issue tracker.
Report Issue Merge RequestDevelopment & Manual Execution
Prerequisites
Run Manually
- Run `npm install` in the `wwwroot` directory.
- Execute `dotnet run` to run the application.
- Visit http://localhost:5000.
Run in Visual Studio
- Open the `.sln` file.
- Press `F5` to run the application.
Always create a personal fork before submitting pull requests.