155 lines
4.4 KiB
Markdown
155 lines
4.4 KiB
Markdown
## CLI
|
|
|
|
```
|
|
Usage: ./cli [options]
|
|
Options:
|
|
--create-user=NAME Create a new user with the given name
|
|
--list-users List all users
|
|
--delete-user=USER_ID Delete a user by ID
|
|
```
|
|
|
|
## Run It Anywhere
|
|
|
|
### Docker Compose
|
|
|
|
```bash
|
|
docker-compose up
|
|
|
|
# Optional: Generate an api key
|
|
# docker-compose exec -it app cli --create-user=Admin
|
|
```
|
|
|
|
### Docker CLI
|
|
|
|
```bash
|
|
docker run \
|
|
--name bit \
|
|
-p 4000:4000 \
|
|
-e ENV="production" \
|
|
-e DATABASE_URL="sqlite3://./sqlite/data.db?journal_mode=wal&synchronous=normal&foreign_keys=true" \
|
|
-e APP_URL="http://localhost:4000" \
|
|
-e ADMIN_NAME="Admin" \
|
|
-e ADMIN_API_KEY=$(openssl rand -base64 32) \
|
|
sjdonado/bit
|
|
|
|
# Optional: Generate an api key
|
|
# docker exec -it bit cli --create-user=Admin
|
|
```
|
|
|
|
### Self-Hosted with Dokku
|
|
|
|
```dockerfile
|
|
FROM sjdonado/bit
|
|
```
|
|
|
|
```bash
|
|
dokku apps:create bit
|
|
|
|
dokku domains:set bit bit.donado.co
|
|
dokku letsencrypt:enable bit
|
|
|
|
dokku storage:ensure-directory bit-sqlite
|
|
dokku storage:mount bit /var/lib/dokku/data/storage/bit-sqlite:/usr/src/app/sqlite/
|
|
|
|
dokku config:set bit DATABASE_URL="sqlite3://./sqlite/data.db?journal_mode=wal&synchronous=normal&foreign_keys=true" APP_URL=https://bit.donado.co ADMIN_NAME=Admin ADMIN_API_KEY=$(openssl rand -base64 32)
|
|
|
|
dokku ports:add bit http:80:4000
|
|
dokku ports:add bit https:443:4000
|
|
|
|
# Optional: Generate an api key
|
|
# dokku run bit cli --create-user=Admin
|
|
```
|
|
|
|
## Local Development
|
|
|
|
### Requirements
|
|
- Crystal 1.12+
|
|
- Shards package manager
|
|
- SQLite3
|
|
|
|
### Install Dependencies
|
|
- linux
|
|
```bash
|
|
sudo apt-get update && sudo apt-get install -y crystal libssl-dev libsqlite3-dev
|
|
```
|
|
|
|
- macos
|
|
```bash
|
|
brew tap amberframework/micrate
|
|
brew install micrate
|
|
```
|
|
|
|
### Install Shards and Run
|
|
|
|
```bash
|
|
shards run bit
|
|
```
|
|
|
|
- Generate the `X-Api-Key`
|
|
|
|
```bash
|
|
shards run cli -- --create-user=Admin
|
|
```
|
|
|
|
- Run tests
|
|
|
|
```bash
|
|
ENV=test crystal spec
|
|
```
|
|
|
|
## Benchmark
|
|
|
|
CPU: Apple M3 Pro
|
|
|
|
```
|
|
> colima start --cpu 1 --memory 1
|
|
INFO[0000] starting colima
|
|
INFO[0000] runtime: docker
|
|
INFO[0001] starting ... context=vm
|
|
INFO[0076] provisioning ... context=docker
|
|
INFO[0077] starting ... context=docker
|
|
INFO[0077] done
|
|
|
|
> ./benchmark.sh
|
|
Setting up...
|
|
[+] Running 2/2
|
|
✔ Network bit_default Created 0.0s
|
|
✔ Container bit Started 0.1s
|
|
Captured API Key: v-8gljT0WjMhQECito3e5g
|
|
Waiting for the application to be ready...
|
|
HTTP/1.1 200 OK
|
|
Connection: keep-alive
|
|
Content-Type: application/json
|
|
Date: Sun, 16 Mar 2025 10:51:22 GMT
|
|
Access-Control-Allow-Origin: *
|
|
Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS
|
|
Access-Control-Allow-Headers: Content-Type, Accept, Origin, X-Api-Key
|
|
Content-Length: 13
|
|
|
|
Starting resource usage monitoring...
|
|
Creating 10000 short links with 100 conrurrent requests...
|
|
Link creation complete: 10000 links created.
|
|
Fetching all created links from /api/links...
|
|
Selected link for benchmarking: http://localhost:4000/pKtTjA
|
|
Starting benchmark with Bombardier...
|
|
Bombarding http://localhost:4000/pKtTjA with 10000 request(s) using 100 connection(s)
|
|
10000 / 10000 [======================================================================================================================================================================] 100.00% 1424/s 7s
|
|
Done!
|
|
Statistics Avg Stdev Max
|
|
Reqs/sec 1885.24 7686.34 140641.16
|
|
Latency 68.00ms 6.43ms 89.56ms
|
|
HTTP codes:
|
|
1xx - 0, 2xx - 0, 3xx - 10000, 4xx - 0, 5xx - 0
|
|
others - 0
|
|
Throughput: 625.54KB/s
|
|
Benchmark completed.
|
|
Analyzing resource usage...
|
|
**** Results ****
|
|
Average CPU Usage: 42.98%
|
|
Average Memory Usage: 33.25 MiB
|
|
./benchmark.sh: line 135: 1500 Terminated: 15 monitor_resource_usage
|
|
[+] Running 2/2
|
|
✔ Container bit Removed 10.1s
|
|
✔ Network bit_default Removed 0.0s
|
|
```
|