mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-10 06:16:25 +00:00
e2a2157370
* RPM/DEB for systemd-based systems Similar to https://github.com/status-im/nimbus-eth2/pull/2691, this PR introduces packaging for nimbus beacon node. Instead of relying on interactive prompts, a default configuration is included that connects to mainnet and expects there to be an execution client running with websockets enabled on the same host, on the standard websocket port. Should the user need to configure their nimbus after installation (for example with a different web3 url), the "standard" way of doing so via `systemctl` edit is recommended.
53 lines
722 B
Plaintext
53 lines
722 B
Plaintext
nimcache/
|
|
|
|
# Executables shall be put in an ignored build/ directory
|
|
build/
|
|
|
|
# Nimble packages
|
|
/vendor/.nimble
|
|
|
|
# ntags/ctags output
|
|
/tags
|
|
|
|
# vscode
|
|
.vscode
|
|
|
|
# Each developer can create a personal .env file with
|
|
# local settings overrides (e.g. WEB3_URL)
|
|
.env
|
|
|
|
# Ignore dynamic, static libs and libtool archive files
|
|
*.so
|
|
*.dylib
|
|
*.a
|
|
*.la
|
|
*.exe
|
|
*.dll
|
|
*.su
|
|
|
|
/scripts/testnet*.sh
|
|
/scripts/package_image/usr/bin
|
|
|
|
# State sim # TODO - move in another folder
|
|
0000-*.json
|
|
*.ssz
|
|
*.log
|
|
*.sqlite3
|
|
*.sqlite3-shm
|
|
*.sqlite3-wal
|
|
|
|
/local_testnet_data*/
|
|
/local_testnet*_data*/
|
|
|
|
# Prometheus db
|
|
/data
|
|
# Grafana dashboards
|
|
/docker/*.json
|
|
|
|
# generated during Nim compilation
|
|
*.nim.generated.nim
|
|
|
|
/dist
|
|
/benchmark_results
|
|
/.update.timestamp
|