16 lines
568 B
Markdown
16 lines
568 B
Markdown
|
```
|
||
|
docker run -d --name erpnext-redis-socketio -p 12311:6379 redis:latest
|
||
|
docker run -d --name erpnext-redis-queue -p 6379:6379 redis:latest
|
||
|
docker run -d --name erpnext-db -p 3306:3306 -e MARIADB_ROOT_PASSWORD=password -e MARIADB_DATABASE=erpnext -e MARIADB_USER=erpnext -e MARIADB_PASSWORD=erpnext mariadb:latest --collation-server=utf8mb4_unicode_ci
|
||
|
|
||
|
nix build .#runErpNext
|
||
|
./result/bin/runErpNext
|
||
|
|
||
|
# new terminal
|
||
|
nix shell nixpkgs#nginx
|
||
|
nginx -c /tmp/erpnext/nginx-erpnext.conf -g "daemon off;"
|
||
|
# http://localhost:8081
|
||
|
# User: Administrator
|
||
|
# Password: admin
|
||
|
```
|