-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into private-brains-2b
- Loading branch information
Showing
37 changed files
with
10,565 additions
and
4 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,16 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[{package.json,*.yml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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 @@ | ||
HOST=0.0.0.0 | ||
PORT=1337 | ||
APP_KEYS="toBeModified1,toBeModified2" | ||
API_TOKEN_SALT=tobemodified | ||
ADMIN_JWT_SECRET=tobemodified | ||
TRANSFER_TOKEN_SALT=tobemodified | ||
JWT_SECRET=tobemodified |
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,3 @@ | ||
.cache | ||
build | ||
**/node_modules/** |
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,27 @@ | ||
{ | ||
"parser": "babel-eslint", | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"commonjs": true, | ||
"es6": true, | ||
"node": true, | ||
"browser": false | ||
}, | ||
"parserOptions": { | ||
"ecmaFeatures": { | ||
"experimentalObjectRestSpread": true, | ||
"jsx": false | ||
}, | ||
"sourceType": "module" | ||
}, | ||
"globals": { | ||
"strapi": true | ||
}, | ||
"rules": { | ||
"indent": ["error", 2, { "SwitchCase": 1 }], | ||
"linebreak-style": ["error", "unix"], | ||
"no-console": 0, | ||
"quotes": ["error", "single"], | ||
"semi": ["error", "always"] | ||
} | ||
} |
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,114 @@ | ||
############################ | ||
# OS X | ||
############################ | ||
|
||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
.Spotlight-V100 | ||
.Trashes | ||
._* | ||
|
||
|
||
############################ | ||
# Linux | ||
############################ | ||
|
||
*~ | ||
|
||
|
||
############################ | ||
# Windows | ||
############################ | ||
|
||
Thumbs.db | ||
ehthumbs.db | ||
Desktop.ini | ||
$RECYCLE.BIN/ | ||
*.cab | ||
*.msi | ||
*.msm | ||
*.msp | ||
|
||
|
||
############################ | ||
# Packages | ||
############################ | ||
|
||
*.7z | ||
*.csv | ||
*.dat | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
*.seed | ||
*.so | ||
*.swo | ||
*.swp | ||
*.swn | ||
*.swm | ||
*.out | ||
*.pid | ||
|
||
|
||
############################ | ||
# Logs and databases | ||
############################ | ||
|
||
.tmp | ||
*.log | ||
*.sql | ||
*.sqlite | ||
*.sqlite3 | ||
|
||
|
||
############################ | ||
# Misc. | ||
############################ | ||
|
||
*# | ||
ssl | ||
.idea | ||
nbproject | ||
public/uploads/* | ||
!public/uploads/.gitkeep | ||
|
||
############################ | ||
# Node.js | ||
############################ | ||
|
||
lib-cov | ||
lcov.info | ||
pids | ||
logs | ||
results | ||
node_modules | ||
.node_history | ||
|
||
############################ | ||
# Tests | ||
############################ | ||
|
||
coverage | ||
|
||
############################ | ||
# Strapi | ||
############################ | ||
|
||
.env | ||
license.txt | ||
exports | ||
*.cache | ||
dist | ||
build | ||
.strapi-updater.json |
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,31 @@ | ||
FROM node:18.13.0-alpine | ||
# Install Python and essential build tools | ||
RUN apk add --update --no-cache python3 make g++ && ln -sf python3 /usr/bin/python | ||
RUN python3 -m ensurepip | ||
RUN pip3 install --no-cache --upgrade pip setuptools | ||
|
||
# Create the directory on the node image | ||
# where our Next.js app will live | ||
RUN mkdir -p /app | ||
|
||
# Set /app as the working directory | ||
WORKDIR /app | ||
|
||
# Copy package.json and yarn.lock | ||
# to the /app working directory | ||
COPY package*.json yarn.lock ./ | ||
|
||
# Install dependencies in /app | ||
RUN yarn install --network-timeout 1000000 | ||
|
||
# Copy the rest of our Next.js folder into /app | ||
COPY . . | ||
|
||
# Build the Next.js application | ||
RUN yarn build | ||
|
||
# Ensure port 3000 is accessible to our system | ||
EXPOSE 1337 | ||
|
||
# Run yarn start, as we would via the command line | ||
CMD ["yarn", "start"] |
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,57 @@ | ||
# 🚀 Getting started with Strapi | ||
|
||
Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/dev-docs/cli) (CLI) which lets you scaffold and manage your project in seconds. | ||
|
||
### `develop` | ||
|
||
Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-develop) | ||
|
||
``` | ||
npm run develop | ||
# or | ||
yarn develop | ||
``` | ||
|
||
### `start` | ||
|
||
Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-start) | ||
|
||
``` | ||
npm run start | ||
# or | ||
yarn start | ||
``` | ||
|
||
### `build` | ||
|
||
Build your admin panel. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-build) | ||
|
||
``` | ||
npm run build | ||
# or | ||
yarn build | ||
``` | ||
|
||
## ⚙️ Deployment | ||
|
||
Strapi gives you many possible deployment options for your project including [Strapi Cloud](https://cloud.strapi.io). Browse the [deployment section of the documentation](https://docs.strapi.io/dev-docs/deployment) to find the best solution for your use case. | ||
|
||
## 📚 Learn more | ||
|
||
- [Resource center](https://strapi.io/resource-center) - Strapi resource center. | ||
- [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation. | ||
- [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community. | ||
- [Strapi blog](https://strapi.io/blog) - Official Strapi blog containing articles made by the Strapi team and the community. | ||
- [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements. | ||
|
||
Feel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome! | ||
|
||
## ✨ Community | ||
|
||
- [Discord](https://discord.strapi.io) - Come chat with the Strapi community including the core team. | ||
- [Forum](https://forum.strapi.io/) - Place to discuss, ask questions and find answers, show your Strapi project and get feedback or just talk with other Community members. | ||
- [Awesome Strapi](https://github.com/strapi/awesome-strapi) - A curated list of awesome things related to Strapi. | ||
|
||
--- | ||
|
||
<sub>🤫 Psst! [Strapi is hiring](https://strapi.io/careers).</sub> |
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,13 @@ | ||
module.exports = ({ env }) => ({ | ||
auth: { | ||
secret: env('ADMIN_JWT_SECRET'), | ||
}, | ||
apiToken: { | ||
salt: env('API_TOKEN_SALT'), | ||
}, | ||
transfer: { | ||
token: { | ||
salt: env('TRANSFER_TOKEN_SALT'), | ||
}, | ||
}, | ||
}); |
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 @@ | ||
module.exports = { | ||
rest: { | ||
defaultLimit: 25, | ||
maxLimit: 100, | ||
withCount: true, | ||
}, | ||
}; |
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,92 @@ | ||
const path = require('path'); | ||
|
||
module.exports = ({ env }) => { | ||
const client = env('DATABASE_CLIENT', 'sqlite'); | ||
|
||
const connections = { | ||
mysql: { | ||
connection: { | ||
connectionString: env('DATABASE_URL'), | ||
host: env('DATABASE_HOST', 'localhost'), | ||
port: env.int('DATABASE_PORT', 3306), | ||
database: env('DATABASE_NAME', 'strapi'), | ||
user: env('DATABASE_USERNAME', 'strapi'), | ||
password: env('DATABASE_PASSWORD', 'strapi'), | ||
ssl: env.bool('DATABASE_SSL', false) && { | ||
key: env('DATABASE_SSL_KEY', undefined), | ||
cert: env('DATABASE_SSL_CERT', undefined), | ||
ca: env('DATABASE_SSL_CA', undefined), | ||
capath: env('DATABASE_SSL_CAPATH', undefined), | ||
cipher: env('DATABASE_SSL_CIPHER', undefined), | ||
rejectUnauthorized: env.bool( | ||
'DATABASE_SSL_REJECT_UNAUTHORIZED', | ||
true | ||
), | ||
}, | ||
}, | ||
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) }, | ||
}, | ||
mysql2: { | ||
connection: { | ||
host: env('DATABASE_HOST', 'localhost'), | ||
port: env.int('DATABASE_PORT', 3306), | ||
database: env('DATABASE_NAME', 'strapi'), | ||
user: env('DATABASE_USERNAME', 'strapi'), | ||
password: env('DATABASE_PASSWORD', 'strapi'), | ||
ssl: env.bool('DATABASE_SSL', false) && { | ||
key: env('DATABASE_SSL_KEY', undefined), | ||
cert: env('DATABASE_SSL_CERT', undefined), | ||
ca: env('DATABASE_SSL_CA', undefined), | ||
capath: env('DATABASE_SSL_CAPATH', undefined), | ||
cipher: env('DATABASE_SSL_CIPHER', undefined), | ||
rejectUnauthorized: env.bool( | ||
'DATABASE_SSL_REJECT_UNAUTHORIZED', | ||
true | ||
), | ||
}, | ||
}, | ||
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) }, | ||
}, | ||
postgres: { | ||
connection: { | ||
connectionString: env('DATABASE_URL'), | ||
host: env('DATABASE_HOST', 'localhost'), | ||
port: env.int('DATABASE_PORT', 5432), | ||
database: env('DATABASE_NAME', 'strapi'), | ||
user: env('DATABASE_USERNAME', 'strapi'), | ||
password: env('DATABASE_PASSWORD', 'strapi'), | ||
ssl: env.bool('DATABASE_SSL', false) && { | ||
key: env('DATABASE_SSL_KEY', undefined), | ||
cert: env('DATABASE_SSL_CERT', undefined), | ||
ca: env('DATABASE_SSL_CA', undefined), | ||
capath: env('DATABASE_SSL_CAPATH', undefined), | ||
cipher: env('DATABASE_SSL_CIPHER', undefined), | ||
rejectUnauthorized: env.bool( | ||
'DATABASE_SSL_REJECT_UNAUTHORIZED', | ||
true | ||
), | ||
}, | ||
schema: env('DATABASE_SCHEMA', 'public'), | ||
}, | ||
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) }, | ||
}, | ||
sqlite: { | ||
connection: { | ||
filename: path.join( | ||
__dirname, | ||
'..', | ||
env('DATABASE_FILENAME', '.tmp/data.db') | ||
), | ||
}, | ||
useNullAsDefault: true, | ||
}, | ||
}; | ||
|
||
return { | ||
connection: { | ||
client, | ||
...connections[client], | ||
acquireConnectionTimeout: env.int('DATABASE_CONNECTION_TIMEOUT', 60000), | ||
}, | ||
}; | ||
}; |
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,12 @@ | ||
module.exports = [ | ||
'strapi::errors', | ||
'strapi::security', | ||
'strapi::cors', | ||
'strapi::poweredBy', | ||
'strapi::logger', | ||
'strapi::query', | ||
'strapi::body', | ||
'strapi::session', | ||
'strapi::favicon', | ||
'strapi::public', | ||
]; |
Oops, something went wrong.