Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trovster/design-and-hype
WordPress website for legacy project “Design and Hype” by Aaron Tolley & Trevor Morris
https://github.com/trovster/design-and-hype
Last synced: 19 days ago
JSON representation
WordPress website for legacy project “Design and Hype” by Aaron Tolley & Trevor Morris
- Host: GitHub
- URL: https://github.com/trovster/design-and-hype
- Owner: trovster
- License: other
- Created: 2023-02-15T17:00:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-22T18:21:51.000Z (almost 2 years ago)
- Last Synced: 2024-12-06T21:05:26.868Z (about 1 month ago)
- Language: PHP
- Homepage: https://designandhype.trovster.com
- Size: 52.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# Design & Hype Website
WordPress website for legacy project “Design and Hype” by Aaron Tolley & Trevor Morris.
## Installation
You must create an `.env` with the following credentials;
```env
FORWARD_APP_PORT=8007
FORWARD_DB_PORT=3322DB_DATABASE=designandhype
DB_USER=designandhype
```You can set up the site using [Docker](https://www.docker.com);
```bash
git clone https://github.com/trovster/design-and-hype.git design-and-hype
cd design-and-hype
npm install
npm run start -- --build
```To stop the Docker container run the following;
```bash
npm run stop
```## Deployment
To deploy the site via GitHub pages, run the following;
```bash
npm run build
npm run deploy
```