Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # parse server ## config.json <code> { "appName": "Parse Server Application", "databaseURI": "mongodb://[mongodb_user]:[mongodb_password]@[mongodb_ip]:[mongodb_port]/[mongodb_database]", "appId": "[app_id]", "masterKey": "master_key", "serverURL": "http://localhost:1337/parse", "publicServerURL": "http://0.0.0.0:1337/parse", "port": 1337, "liveQuery": { "classNames": ["Pantry", "Test", "TestAgain"] }, "liveQueryServerOptions": { "serverURL": "http://localhost:1337" }, "allowOrigin": "*" } </code> ## parse.service /etc/systemd/system/parse.service <code> [Unit] Description=Parse Server service After=network.target StartLimitIntervalSec=0 [Service] Type=simple Restart=always RestartSec=1 User=[user] ExecStart=/usr/local/bin/parse-server /home/[user]/parse_server/config.json [Install] WantedBy=multi-user.target </code> open/parse-server.txt Last modified: 2024/10/05 06:15by 127.0.0.1