Create temporary notes without cluttering your local computer.
Tired of the mess on your device left by the creation of ad-hoc notes? Our site offers a cleaner and simpler way to take notes. Just write and go. Your notes persist across browser sessions, either through cookies or a unique URL. No account needed. Notes last for a week, so you can focus on what matters, not file management.
Try it here.
Make sure you have a Docker daemon running on your machine:
dockerd
Clone the repo.
git clone https://github.com/lezhou8/temp-notes.git
Navigate into the repo.
cd temp-notes
Create a .env file:
cat <<EOF > .env
DL_URL=jdbc:postgresql://db:5432/postgres
POSTGRES_USER=<username>
POSTGRES_PASSWORD=<password>
POSTGRES_DB=postgres
EOF
Replace <username> and <password> with your desired credentials.
Then start the app using Docker Compose:
docker compose up
Then visit http://localhost in your browser.
Ensure a Docker daemon is running on your machine, due to Testcontainers being used:
dockerd
Navigate to the backend directory:
cd backend
Run the test suite.
On Unix-based systems:
./gradlew test
On Windows:
gradlew.bat test