Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/twlite/carrots
An express.js blog platform with enmap(sqlite) storage back-end, ejs templating, and simple to follow code source.
https://github.com/twlite/carrots
Last synced: about 1 month ago
JSON representation
An express.js blog platform with enmap(sqlite) storage back-end, ejs templating, and simple to follow code source.
- Host: GitHub
- URL: https://github.com/twlite/carrots
- Owner: twlite
- License: apache-2.0
- Created: 2020-02-04T10:55:30.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-07T08:31:21.000Z (about 5 years ago)
- Last Synced: 2024-09-20T00:28:59.546Z (about 2 months ago)
- Homepage:
- Size: 803 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Carrots (work in progress)
This package started out as a very simple way for me to test & prove that Enmap was easy to use an integrate into an express.js app.
The best way, I thought, to do this, was to write a blog platform. So I started doing that. And then I wrote an admin for it. Then
I started writing an API for it. Then a CLI feature.And now we have this. This is a boilerplate for making your own blog. It's not *meant* to be directly used as-is, because the styling
is pretty basic, the wording of the templates is not-funny-to-passive-agressive, and it might still be missing features *you* want in
a blog platform. But, it's at least secure enough (passwords are salted, hashed, bcrypted, the API is token-secured, etc), and stable
enough, that it's useable in its current state.> **Carrots?** If you plop in "Lorem ipsum dolor sit amet" into Google Translate, it translates to... Lorem ipsum carrots. I found this
> funny... And so I took it. :D## Pre-Requisites
Carrots uses `enmap` for data storage, which is a wrapper around better-sqlite3. Thus, the data is in fact stored in sqlite.
But, as with any sqlite module on node, it requires a build system to work. Rather than reproduce my enmap docs here, let me point
you to [the pre-requisites docs](https://enmap.evie.codes/install#pre-requisites). Please follow the instructions in the tabbed box
for your operating system, then come back here.## Getting and Installing
To install Carrots, once the pre-requisites are properly installed, open a new command prompt and type the following commands:
```
git clone https://github.com/eslachance/carrots.git
cd Carrots
npm install
```You also have to copy `config.json.example` to `config.json` and edit its contents to your desired configuration:
- `saltRounds`: Used for bcrypt. More rounds means more secure, but a little slower.
- `secret`: The secret used for salting sessions. Can be just any unique string.
- `port`: The port you want the http server to listen on. 8080 by default, 80 for the regular http port.Once you've saved the config.json file, simply run `node .` and it should start the blog server.
- Visit [http://localhost:8080/install](http://localhost:8080/install) to finish the installation process.
## Additional Utilities
There are 2 useful tools you might want to consider for use with this module.
### pm2
pm2 is a process manager, meaning it can keep your project running even if you close the command prompt. It also gives you the console
log output of your project and saves it to a log file, making for easy and painless debugging and running.Initial Setup:
```
npm i -g pm2
pm2 start index.js --name="myblog"
```Other Commands:
- `pm2 logs myblog` to see the logs in realtime
- `pm2 stop myblog` to stop the project
- `pm2 start myblog` to start the project in the future
- `pm2 restart myblog` to... you get the picture, right?
- `pm2 save` to save the current configured app to a file
- `pm2 resurrect` to restore the saved configuration after a computer reboot.### ngrok
ngrok is an http tunnel, meaning it can give you a public URL for your project so you can show it off. With a paid subscription you can
also have a custom subdomain that's permanent, but by default it will change every time you launch it.- Follow [The setup instructions](https://dashboard.ngrok.com/get-started) to download, configure, and setup ngrok initially.
- Make sure the ngrok.exe file is in your PATH (or in the same folder as your project)
- Run `ngrok http 8080` (or replace with your port in config.json) to start the tunnel.As long as ngrok is running, the "Forwarding" URL shown in the console log will be your blog's public address.
## Documentation / API
To be done. I'll wait for them to be actually complete before I document them :P