Mil Lo Na is a simple note-taking application that allows users to create, edit and view notes. The notes are stored as text files on the server.
- Create notes with a title and description.
- View a list of created notes.
- Read individual notes.
- Edit or update notes
-
Clone the repository:
git clone https://github.com/yourusername/mil-lo-na.git
-
Navigate to the project directory:
cd mil-lo-na
-
Install the dependencies:
npm install
-
Create the necessary folders:
mkdir public/images public/stylesheets public/javascripts files
-
(Optional) Add your own logo to the public/images directory and name it logo.svg.
- Start the server:
node index.js
- Open your web browser and navigate to:
http://localhost:3000
- Use the form to create new notes. The notes will be listed below the form, and you can click "Read more" to view individual notes.
mil-lo-na/
├── files/ # Folder to store notes as text files
├── node_modules/
├── public/
│ ├── images/ # Public images folder
│ ├── javascripts/ # Public JavaScript files
│ └── stylesheets/ # Public CSS files
├── views/
│ └── index.ejs # Main view template
├── index.js # Main server file
├── package.json
├── README.md
- Node.js
- Express
- EJS
- Tailwind CSS
This project is licensed under the MIT License - see the LICENSE file for details.
Make sure to replace `https://github.com/yourusername/mil-lo-na.git` with the actual URL of your GitHub repository. This README file provides a comprehensive overview of your project, including installation instructions, usage, and folder structure.