homepage.js/README.md

28 lines
713 B
Markdown
Raw Normal View History

2023-02-19 10:54:30 +01:00
# homepage.js
2023-03-01 07:15:02 +01:00
This is a rewrite of my current website to Express.JS.
[Git repo](https://git.blek.codes/blek/homepage.js) | [Demo](https://new.blek.codes) (may or may not work)
2023-03-01 07:05:28 +01:00
# Running an instance
### Debug
```bash
cp .env.example .env
APP_DEBUG=true sudo ./install
docker-compose up -d
```
### Production
Note: production instance is not production-ready yet, as it is still in development mode.
```bash
cp .env.example .env
echo "APP_DEBUG=false" >> .env # Or edit the file yourself
sudo ./install
docker-compose up -d
2023-03-11 15:28:17 +01:00
```
Also dont forget to build the [resume app](#build-the-resume)
## Build the resume
cd to `react/resume` and run `build.sh`.
If you are running in debug mode, run `yarn/npm start`