Amidanote is nextjs based note app which you can take a note in markdown format as also organize and publish.
Open https://amidanote.com/ then go to the app
- Clone the source code from github
git clone https://github.com/kenyasue/amidanote.git
- Install dependencies
npm install
- Create config file
cp .env_sample .env
- Edit .env
nano .env
And change following lines to absolute path
UPLOADS_PATH=***
BASE_PATH=***
- Start databases server in docler
cd docker/
sudo docker-compose up -d
- Start the server
npm run dev
- Open http://localhost:3000 in your browser.