diff --git a/README.md b/README.md index dda2aea..31c8e05 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,10 @@ Here's all the source code for the site I host on [werefox.dev](https://werefox. ## Development -You can use the `start.sh` script to start up the container in development mode. +You can use the `deploy.sh` script to start up the container in development mode. ``` -./start.sh dev +./deploy.sh dev ``` This will handle starting a new container of Next.js with all required packages for the site in development mode. You should use this if you're planning on running the site using production mode later so you can see changes to your code in real time and test any backend changes. @@ -18,14 +18,14 @@ Keep in mind that you should **never** host this site in development mode public ## Production -You can also use the `start.sh` script to start up the container in production mode. +You can also use the `deploy.sh` script to start up the container in production mode. ``` -./start.sh build -./start.sh start +./deploy.sh build +./deploy.sh start ``` -The `build` parameter will generate the necessary static assets for the site, including any static pages and JSON. The `start` parameter starts up a production server. If the build fails, you won't be able to start a production server. So, if you decide to issue something like `./start.sh build && ./start.sh start` just keep that in mind. +The `build` parameter will generate the necessary static assets for the site, including any static pages and JSON. The `start` parameter starts up a production server. If the build fails, you won't be able to start a production server. So, if you decide to issue something like `./deploy.sh build && ./deploy.sh start` just keep that in mind. ## Personalization (Forking)