-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Took 19 minutes
- Loading branch information
Showing
8 changed files
with
6,396 additions
and
1,113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#PORT=8081 # default port to run on | ||
#NC_DB= #See our database URLs A local SQLite will be created in root folder | ||
#DATABASE_URL= #JDBC URL Format. Can be used instead of NC_DB. Used in 1-Click Heroku deployment | ||
#DATABASE_URL_FILE= #path to file containing JDBC URL Format. Can be used instead of NC_DB. Used in 1-Click Heroku deployment | ||
#NC_PUBLIC_URL= #Used for sending Email invitations Best guess from http request params | ||
#NC_AUTH_JWT_SECRET= #JWT secret used for auth and storing other secrets A Random secret will be generated | ||
#NC_SENTRY_DSN= #For Sentry monitoring | ||
#NC_CONNECT_TO_EXTERNAL_DB_DISABLED= #Disable Project creation with external database | ||
#NC_DISABLE_TELE= #Disable telemetry | ||
#NC_BACKEND_URL= #Custom Backend URL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,4 +27,6 @@ codegen/ | |
oax/ | ||
swagger-ui/ | ||
/swagger-codegen-cli* | ||
tmp | ||
tmp | ||
.env | ||
/vendor/ |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
(async () => { | ||
const app = require('express')(); | ||
const {Noco} = require("nocodb"); | ||
app.use(await Noco.init({})); | ||
console.log(`Visit : localhost:${process.env.PORT}/dashboard`) | ||
app.listen(process.env.PORT); | ||
})() |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters