This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=vLLM OpenAI-compatible server (Qwen3.6-27B PrismaAURA 5.5bit CT, TP=2, MTP spec=5) | |
| After=network.target | |
| Wants=network.target | |
| [Service] | |
| Type=simple | |
| User=alex | |
| Group=alex | |
| ExecStart=/home/alex/vllm-venv/bin/python -m vllm.entrypoints.openai.api_server \ |
- Using a ready-to-use Ubuntu image
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git filter-branch --tree-filter "rm -rf node_modules" --prune-empty HEAD | |
| git for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d | |
| echo node_modules/ >> .gitignore | |
| git add .gitignore | |
| git commit -m 'Removing node_modules from git history' | |
| git gc | |
| git push origin master --force |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| jenkins: | |
| image: istresearch/jenkins:latest | |
| container_name: jenkins | |
| user: jenkins | |
| environment: | |
| JENKINS_HOST_HOME: "/data/jenkins" | |
| ports: | |
| - "8080:8080" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Use root/example as user/password credentials | |
| version: '3.1' | |
| services: | |
| db: | |
| image: mysql | |
| command: --default-authentication-plugin=mysql_native_password | |
| restart: always | |
| environment: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.1' | |
| services: | |
| db: | |
| image: postgres | |
| restart: always | |
| environment: | |
| POSTGRES_PASSWORD: example | |
| ports: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run -p 8000:8000 amazon/dynamodb-local --name aws-dynamo-db-local |
NewerOlder