-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from PostOwl/fly-launch
Simplify deployment
- Loading branch information
Showing
15 changed files
with
285 additions
and
110 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 |
---|---|---|
@@ -1,18 +1,15 @@ | ||
fly.toml | ||
Dockerfile | ||
.dockerignore | ||
# Directories | ||
build | ||
node_modules | ||
.git | ||
package | ||
|
||
# Files | ||
.DS_Store | ||
build | ||
data | ||
/.svelte-kit | ||
/package | ||
.env | ||
.env.* | ||
.git | ||
.env* | ||
!.env.production | ||
.envrc | ||
.tool-versions | ||
.svelte-kit | ||
.tool-versions | ||
data/db.sqlite3* | ||
fly.toml | ||
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* |
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
# Example .env file for development | ||
# For production, environment variables are set in .env.production | ||
# SvelteKit settings | ||
ORIGIN="http://localhost:5173" | ||
|
||
# PostOwl settings | ||
DB_PATH="./data/db.sqlite3" | ||
ORIGIN="http://localhost:5173" | ||
ADMIN_PASSWORD="your-secret-password" | ||
ADMIN_NAME="Your Name" | ||
ADMIN_EMAIL="[email protected]" | ||
|
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# Example .env file for production | ||
# SvelteKit settings | ||
PROTOCOL_HEADER="x-forwarded-proto HOST_HEADER=x-forwarded-host" | ||
|
||
# PostOwl settings | ||
DB_PATH="./data/db.sqlite3" | ||
ORIGIN="https://yourapp.fly.dev" | ||
DB_PATH="/data/db.sqlite3" | ||
ADMIN_PASSWORD="your-secret-password" | ||
ADMIN_NAME="Your Name" | ||
ADMIN_EMAIL="[email protected]" | ||
|
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
.DS_Store | ||
# Directories | ||
build | ||
node_modules | ||
/build | ||
/.svelte-kit | ||
/package | ||
.env | ||
.env.* | ||
package | ||
|
||
# Files | ||
.DS_Store | ||
.env* | ||
!.env.example | ||
!.env.production.example | ||
*.sqlite3* | ||
fly.toml | ||
.svelte-kit | ||
.tool-versions | ||
Dockerfile | ||
fly.toml | ||
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* |
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.