Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nebulosprod/website
EJS Website for the Nebulos Discord Bot.
https://github.com/nebulosprod/website
bot discord discord-bot discordapp ejs website
Last synced: about 1 month ago
JSON representation
EJS Website for the Nebulos Discord Bot.
- Host: GitHub
- URL: https://github.com/nebulosprod/website
- Owner: NebulosProd
- License: mit
- Created: 2024-01-17T22:42:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-26T21:45:33.000Z (about 1 year ago)
- Last Synced: 2024-12-19T01:08:01.196Z (about 1 month ago)
- Topics: bot, discord, discord-bot, discordapp, ejs, website
- Language: EJS
- Homepage: https://nebulos.pro
- Size: 759 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nebulos Website
This is the official sourcecode of the [Nebulos.pro](https://nebulos.pro) Website for the Nebulos Discord Bot
## InstallationClone the repository
```bash
git clone https://github.com/NebulosProd/Website.git
```Go into the Repository
```bash
cd Website
```Use [npm](npmjs.com/) to install all the required packages.
```bash
npm i
```Insert your .pem certificate files into the folder (fullchain.pem & privkey.pem)
## Start
```bash
node .
```### You can access your Website now on https://domain.com/
You can change your settings in the [config.json](https://github.com/NebulosProd/Website/blob/main/config.json)
## ContributingPull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.Please make sure to update tests as appropriate.
### Repository Tree
```
📦 Website
├─ .gitignore
├─ LICENSE # License File
├─ README.md # ALl informations about the Project
├─ assets # Assets for the Website
│  ├─ css # CSS Folder to store all CSS Files.
│  │  └─ style.css # Main CSS File
│  ├─ images # Image Folder to store all Images.
│  │  ├─ image.png # "Bot Picture"
│  │  ├─ logowhite.svg # "White Nebulos Banner"
│  │  └─ stats-banner.png # "Map with Dots"
│  └─ js # JavaScript Folder to store all JS Files.
│     └─ script.js # Main JavaScript FIle
├─ config.json # Config for the project
├─ index.js # Start file and "Brain"
├─ package-lock.json # Packages
├─ package.json # Packages
└─ views # Folder for all the View Templates
   ├─ index.ejs # Main Site View Template
   ├─ privacy.ejs # Privacy Site View Template
   └─ tos.ejs # Terms Of Service View Template
```## License
[MIT](https://choosealicense.com/licenses/mit/)