diff options
| -rw-r--r-- | .env.sample | 2 | ||||
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | Dockerfile | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | migrations/00000000000000_diesel_initial_setup/down.sql | 2 | ||||
| -rw-r--r-- | src/routes/messages.rs | 2 | ||||
| -rw-r--r-- | src/routes/mod.rs | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/.env.sample b/.env.sample index f2feaf8..054d80e 100644 --- a/.env.sample +++ b/.env.sample @@ -1,2 +1,2 @@ DATABASE_URL=postgres://username:password@localhost/august_offensive -BIND_ADDRESS=127.0.0.1:8080
\ No newline at end of file +BIND_ADDRESS=127.0.0.1:8080 @@ -6,4 +6,4 @@ Cargo.lock target/ *.out *~ -**/*.rs.bk
\ No newline at end of file +**/*.rs.bk diff --git a/.travis.yml b/.travis.yml index 22447f1..2894055 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,4 +12,4 @@ matrix: script: - cargo build --verbose --all - - cargo test --verbose --all
\ No newline at end of file + - cargo test --verbose --all @@ -21,4 +21,4 @@ diesel = { version = "1.3.0", features = ["postgres"] } actix = "0.7" actix-web = "^0.7" serde = "1.0" -serde_derive = "1.0"
\ No newline at end of file +serde_derive = "1.0" @@ -7,4 +7,4 @@ COPY . . RUN cargo install EXPOSE 8080 -CMD ["august-offensive"]
\ No newline at end of file +CMD ["august-offensive"] @@ -17,4 +17,4 @@ Visit the Wiki for guides detailing [how to deploy August Offensive](https://git ## Contributing to the Project -While the project is still getting off the ground, there is not much back-end of which to build off. That doesn't mean you can't help brainstorm at least! There is much about the core functionality that is still up in the air at this point. Please have a look at [the Roadmap](https://github.com/kjhoerr/august-offensive/wiki/Roadmap) for a detailed layout of intended features and / or milestones.
\ No newline at end of file +While the project is still getting off the ground, there is not much back-end of which to build off. That doesn't mean you can't help brainstorm at least! There is much about the core functionality that is still up in the air at this point. Please have a look at [the Roadmap](https://github.com/kjhoerr/august-offensive/wiki/Roadmap) for a detailed layout of intended features and / or milestones. diff --git a/migrations/00000000000000_diesel_initial_setup/down.sql b/migrations/00000000000000_diesel_initial_setup/down.sql index 25f4412..3830035 100644 --- a/migrations/00000000000000_diesel_initial_setup/down.sql +++ b/migrations/00000000000000_diesel_initial_setup/down.sql @@ -7,4 +7,4 @@ DROP TABLE regions; DROP TABLE allegiances; DROP TABLE games; DROP TABLE activation_keys; -DROP TABLE users;
\ No newline at end of file +DROP TABLE users; diff --git a/src/routes/messages.rs b/src/routes/messages.rs index c4d7b5c..c4f2b5e 100644 --- a/src/routes/messages.rs +++ b/src/routes/messages.rs @@ -16,4 +16,4 @@ impl Message for Callback { fn name(&self) -> String { String::from("CALLBACK") } -}
\ No newline at end of file +} diff --git a/src/routes/mod.rs b/src/routes/mod.rs index ca70dcf..017413b 100644 --- a/src/routes/mod.rs +++ b/src/routes/mod.rs @@ -25,4 +25,4 @@ fn destruct_path(path: &str) -> Vec<String> { .skip(1) .map(String::from) .collect::<Vec<String>>() -}
\ No newline at end of file +} |
