You can run your own Standard Notes server and use it with any Standard Notes app. This allows you to have 100% control of your data. This server is built with TypeScript and can be deployed in minutes.
Requirements
Data persistency
Your MySQL Data will be written to your local disk in the data
folder to keep it persistent between server runs.
Clone the project:
git clone --branch main https://github.com/standardnotes/syncing-server-js.git
Setup the server by running:
./server.sh setup
Run the server by typing:
./server.sh start
Your server should now be available under http://localhost:3000
Note: When running the server locally it is by default ran in a Hot Reload Mode. This means that every time you change any of the source files locally the server is restarted to reflect the changes. This is in particular helpful when doing local development.
You can check the logs of the running server by typing:
./server.sh logs
In order to stop the server type:
./server.sh stop
In order to update to the latest version of our software type:
./server.sh update
You can check the status of running services by typing:
./server.sh status
Please use this step with caution. In order to remove all your data and start with a fresh environment please type:
./server.sh cleanup
To execute all of the test specs, run the following command at the root of the project directory:
yarn test