67 lines
1.9 KiB
Markdown
67 lines
1.9 KiB
Markdown
# pontus-mail
|
|
[](#)
|
|
[](http://creativecommons.org/publicdomain/zero/1.0/)
|
|
|
|
Landing page for p0ntus mail
|
|
# Self hosting
|
|
## Traditional Node.js
|
|
1. Clone the repo
|
|
```bash
|
|
git clone https://github.com/ihatenodejs/pontus-mail.git
|
|
cd pontus-mail
|
|
```
|
|
2. Copy the example `docker-compose.yml`
|
|
```bash
|
|
mv docker-compose.yml.example docker-compose.yml
|
|
```
|
|
3. Copy the example `donations.json`
|
|
```bash
|
|
mv donations.json.example donations.json
|
|
```
|
|
4. Copy the example `.env`
|
|
```bash
|
|
mv .env.example .env
|
|
```
|
|
|
|
Make sure you edit this with your MySQL server information and other values.
|
|
5. Install dependencies
|
|
```bash
|
|
npm install
|
|
```
|
|
6. Start the server
|
|
```bash
|
|
node app.js
|
|
```
|
|
|
|
You will now have a fully functioning Node.js Express server, which will be running on port `3000`.
|
|
## With Docker
|
|
You can also use Docker to self-host pontus-mail's frontend. Make sure you have docker-compose or docker-compose-plugin installed on your system.
|
|
1. Clone the repo
|
|
```bash
|
|
git clone https://github.com/ihatenodejs/pontus-mail.git
|
|
cd pontus-mail
|
|
```
|
|
2. Copy the example `docker-compose.yml`
|
|
```bash
|
|
mv docker-compose.yml.example docker-compose.yml
|
|
```
|
|
3. Copy the example `.env`
|
|
```bash
|
|
mv .env.example .env
|
|
```
|
|
|
|
Make sure you edit this file with values matching in `docker-compose.xml`, and other desired values like admin username/password.
|
|
3. Copy the example `donations.json`
|
|
```bash
|
|
mv donations.json.example donations.json
|
|
```
|
|
4. Start and build Docker containers
|
|
```bash
|
|
docker compose up -d --build
|
|
```
|
|
|
|
You will now have a fully functioning Node.js Express server, which will be running on the port specified in `docker-compose.yml`, and internally on port `3000`.
|
|
|
|
# To-Do
|
|
- [ ] Port to NextJS?
|
|
- [ ] Hovering effects for buttons |