Skip to content

Commit

Permalink
Initial setup files, ESLINT, Snowpack etc
Browse files Browse the repository at this point in the history
  • Loading branch information
andyrids committed Feb 1, 2021
1 parent 88d536f commit 4c32379
Show file tree
Hide file tree
Showing 8 changed files with 6,081 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
env: {
browser: true,
node: true,
es2021: true,
},
extends: [
'airbnb-base',
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
rules: {
},
};
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.build
build
.env
web_modules
node_modules
# Local Netlify folder
.netlify
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Fred K. Schott

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
42 changes: 42 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[build]
# Directory (relative to root of your repo) that contains the deploy-ready
# HTML files and assets generated by the build. If a base directory has
# been specified, include it in the publish directory path.
publish = "public/"

# Default build command.
command = "npm run build"

# Directory with the serverless Lambda functions to deploy to AWS.
functions = "src/functions/"

[dev]
framework = "#custom"
command = "npm run start" # Command to start your dev server
targetPort = 8080 # The port for your application server, framework or site generator.
port = 8888 # The port that the netlify dev will be accessible on
publish = "public" # If you use a _redirect file, provide the path to your static content folder

# Define redirects from custom endpoint to a netlify function
[[redirects]]
from = '/api/weather/*'
to = '/.netlify/functions/open-weather/:splat'
query = { lat = ':lat', lon = ':lon', units = ':units' }
status = 200
force = true

# Define redirects from custom endpoint to a netlify function
[[redirects]]
from = '/api/geocode/forward/*'
to = '/.netlify/functions/location-iq/:splat'
query = { city = ':city', type = ':type' }
status = 200
force = true

# Define redirects from custom endpoint to a netlify function
[[redirects]]
from = '/api/geocode/reverse/*'
to = '/.netlify/functions/location-iq/:splat'
query = { lat = ':lat', lon = ':lon', type = ':type' }
status = 200
force = true
Loading

0 comments on commit 4c32379

Please sign in to comment.