Barbaresco, Pasta Fresca & Le Rock the top restaurants in ternopil in one place.
Deployed from the branch after runing npn run generate && npm run deploy: https://virus-car-detailing-branched.netlify.com/
Deployed automatically by netlify from npm run generate on netlify console: https://virus-car-detailing.netlify.com/
- Vue js
- Nuxt js
- Bootstrap
- Bootstrap Vue
- Axios
- Nuxt caching
- Google Maps
- VueX
- PWA
- Owl carousel
- Nuxt-i18n
- Vuemask
- Lazyload
- RestApi
- GraphQl
- Direct generated html files deploy from the gh-pages branch holding dist file content.
- Deploy main branch with npm run build or npm run generate as stated below.
- Using nginx as a reverse proxy
- Blog post on the deployment process to nginx
- Deploy nuxt app (Vue.js) with Pm2 and Nginx
Note:
- Server port points to
server: {
port: 8383,
host: '0.0.0.0'
},
as updated in nuxt.config.js coment section out or update places it's needed on nginx deployment. 2. Your webserver is not aware of the routing inside your Vue application, so you'll need to have Nginx point all requests to the application to the index.html and after that Vue routing will take over. The documentation can be found here.
The required configuration snippet copied from there is the following:
location / {
try_files $uri $uri/ /index.html;
}
Or if using nginx proxy, The documentation can be found here
For Nginx you can add a proxy using the follwing location block:
server {
location / {
proxy_pass http://http://127.0.0.1:8383;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
In production you need a process manager to keep the Node server alive forever:
# install pm2 process manager
npm install -g pm2
# startup script
pm2 startup
# start process
pm2 start npm --name "barbaresco" -- run start
# save process list
pm2 save
# list all processes
pm2 l
After each deploy you'll need to restart the process:
pm2 restart barbaresco
To update, install, generate and restart server with all new changes from github use the bellow command
npm run update
Make sure to read the Nuxt docs.
More Information on deploying to Nginx
map $sent_http_content_type $expires {
"text/html" epoch;
"text/html; charset=utf-8" epoch;
default off;
}
server {
listen 80; # the port nginx is listening on
server_name your-domain; # setup your domain here
gzip on;
gzip_types text/plain application/xml text/css application/javascript;
gzip_min_length 1000;
location / {
expires $expires;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 1m;
proxy_connect_timeout 1m;
proxy_pass http://127.0.0.1:8383; # to 3000 if port had been updated in nuxtconfig. # set the adress of the Node.js instance here
}
}
- Deploy command Build command:
npm run generate
# If not all data is available then
node ./create-env.js && npm run generate
also add the necessary environment variables 2. If the ./create-env.js command is used make sure to add env variables to the site server. 3. Deployed dirctory: dist 4. Build for production shoukd be ready.
# install dependencies
npm install
# serve with hot reload at localhost:3100
# To reset the local host to localhost:3000 change line 12 to 15 in nuxt config file given that 3000 is not in use.
server: {
port: 3100, # to 3000
host: '0.0.0.0'
},
# or delete contents of above stated line.
npm run dev
# build for production and launch server on local device case server will listen to localhost 3100
npm run build
npm start
# generate static project
npm run generate
For detailed explanation on how things work, checkout Nuxt.js docs.
# install dependencies
npm run install
# serve with hot reload at localhost:3000
npm run dev
# build for production and launch server
npm run build
npm run start
# generate static project
npm run generate
For detailed explanation on how things work, check out Nuxt.js docs.