Add .env.example for environment variable reference, nixpacks.toml for Nixpacks deployment, and docker-compose.yml for containerized deployment. These files provide necessary configuration for running the application in different environments.
12 lines
190 B
TOML
12 lines
190 B
TOML
[phases.setup]
|
|
nixPkgs = ["nodejs", "python3", "gcc", "gnumake"]
|
|
|
|
[phases.install]
|
|
cmds = ["npm install"]
|
|
|
|
[phases.build]
|
|
cmds = ["mkdir -p data"]
|
|
|
|
[start]
|
|
cmd = "npm run seed && npm start"
|