Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
| import type { Config, Context } from "@netlify/functions"; | |
| export default async (request: Request, context: Context) => { | |
| const name = context.params.name; | |
| const otherParams = new URL(request.url).searchParams.toString(); | |
| return new Response(`hello ${name}! The other params are ${otherParams}`); | |
| }; | |
| export const config: Config = { |
| { | |
| "repository": {}, | |
| "dependencies": { | |
| "brunch": "^1.8.5", | |
| "babel-brunch": "^5.1.1", | |
| "clean-css-brunch": ">= 1.0 < 1.8", | |
| "css-brunch": ">= 1.0 < 1.8", | |
| "javascript-brunch": ">= 1.0 < 1.8", | |
| "uglify-js-brunch": ">= 1.0 < 1.8", | |
| "sass-brunch": "^1.9.1" |
| call plug#begin('~/.vim/plugged') | |
| Plug 'junegunn/vim-easy-align' | |
| Plug 'tpope/vim-sensible' | |
| Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
| Plug 'kien/ctrlp.vim' | |
| Plug 'sickill/vim-monokai' | |
| Plug 'rking/ag.vim' | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'tpope/vim-haml' |
Create droplet of your liking (ubuntu 12.10 x32)
ssh to root in terminal with your server ip
ssh [email protected]
Add ssh fingerprint and enter password provided in email
| <h1>Hello FAF, this is a document</h1> | |
| <p>So we're trying to do interesting documents</p> | |
| <p>They are actually quide <strong>hard</strong> | |
| Not that <em>easy</em></p> | |
| <p>What happens if we do ##this?</p> | |
| <p>How about <code><em>this</strong></em>?</p> |
| <nav class="navbar navbar-default"> | |
| <div class="container-fluid"> | |
| <div class="navbar-header"> | |
| <a class="navbar-brand" href="#">Azi tu Mâine eu</a> | |
| </div> | |
| <div class="navbar-collapse"> | |
| <ul class="nav navbar-nav"> | |
| <li> | |
| <%= link_to("Postare nouă", new_post_path) %> |
| <%= cl_image_tag(post.image.path, width: 500, class: 'img-responsive img-thumbnail') %> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Azi tu Mâine Eu</title> | |
| <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> | |
| <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> | |
| <%= csrf_meta_tags %> | |
| <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> | |
| </head> | |
| <body> |
| /*! | |
| * Start Bootstrap - Landing Page Bootstrap Theme (http://startbootstrap.com) | |
| * Code licensed under the Apache License v2.0. | |
| * For details, see http://www.apache.org/licenses/LICENSE-2.0. | |
| */ | |
| body, | |
| html { | |
| width: 100%; | |
| height: 100%; |