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.
|
2023-03-17 13:34:51 +01:00
|
|
|
[Git repo](https://git.blek.codes/blek/homepage.js) | [Website](https://blek.codes)
|
2023-03-01 07:05:28 +01:00
|
|
|
|
|
|
|
# Running an instance
|
|
|
|
|
2023-03-11 15:42:36 +01:00
|
|
|
First, [generate the app key](#generate-the-key).
|
|
|
|
|
2023-03-01 07:05:28 +01:00
|
|
|
### 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`.
|
2023-03-11 15:42:36 +01:00
|
|
|
If you are running in debug mode, run `yarn/npm start`
|
|
|
|
|
|
|
|
## Generate the key
|
2023-03-17 11:54:21 +01:00
|
|
|
Cd to root of project and run `scripts/generate_key.py`
|