Skip to content
Merged

Alpha #149

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7f30565
Merge pull request #88 from Brighter-Applications/features/add_cobra5
alex-williams Dec 13, 2024
60a05d9
Features/add_corsair (#93)
alex-williams Apr 10, 2025
a3d7c8b
Features/add corsair (#94)
alex-williams Jun 28, 2025
f38a091
Features/add corsair (#121)
alex-williams Oct 9, 2025
f404e77
packages
alex-williams Oct 11, 2025
298bb97
Basic React 16 upgrade and some minimal fixes
alex-williams Oct 11, 2025
7c2809c
lifecycle changes fixed
alex-williams Oct 11, 2025
7e4f009
Functioning React 19 changes, with more edits to make
alex-williams Oct 12, 2025
875da01
semi-broken, but almost functional
alex-williams Oct 13, 2025
500b689
Workflow to deploy alpha
alex-williams Oct 14, 2025
fce42b1
permitting upgrade in build (#138)
alex-williams Oct 14, 2025
b3f1782
Feat/react 16 upgrade (#139)
alex-williams Oct 14, 2025
1d44a8c
Feat/react-16-upgrade (#140)
alex-williams Oct 15, 2025
262bdb7
Feat/react 16 upgrade (#141)
alex-williams Oct 15, 2025
b95f601
Feat/react 16 upgrade (#142)
alex-williams Oct 15, 2025
9e02ae6
Feat/react 16 upgrade (#143)
alex-williams Oct 15, 2025
0113b5c
category menu (#144)
alex-williams Oct 15, 2025
8dbc1fa
Fixing icon placement (#145)
alex-williams Oct 16, 2025
e681da3
Improving search feature (#146)
alex-williams Oct 16, 2025
5346846
Adding Powerplay Icon (#147)
alex-williams Oct 21, 2025
2a908a6
Adding in the Caspian Explorer, fixing ship ordering, etc. (#148)
alex-williams Dec 6, 2025
c33a8e0
Merge branch 'beta' into alpha
alex-williams Dec 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/autodeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ name: Auto-Deploy 'beta/live' Branch to beta.coliolis.io or coriolis.io
on:
push:
branches:
- alpha
- beta
- live
# Figure out the target branch name
Expand Down Expand Up @@ -39,10 +40,12 @@ jobs:
cd ./coriolis-data
export NVM_DIR=~/.nvm
source ~/.nvm/nvm.sh
npm install 2>&1
rm -Rf node_modules package-lock.json
npm install --legacy-peer-deps 2>&1
npm start
cd ../coriolis
npm install 2>&1
rm -Rf node_modules package-lock.json
npm install --legacy-peer-deps 2>&1
npm run build 2>&1
- name: Zip the code
shell: bash
Expand Down Expand Up @@ -99,5 +102,5 @@ jobs:
- name: Move the build to the web server
shell: bash
run: |
if [ ${{ env.BRANCH_NAME }} == "beta" ]; then rsync -av --omit-dir-times --no-perms --delete --exclude='.git/' --exclude='.github/' ./coriolis/build/* /var/www/beta.coriolis.io/; else rsync -av --omit-dir-times --no-perms --delete --exclude='.git/' --exclude='.github/' ./coriolis/build/* /var/www/coriolis.io/; fi
if [ ${{ env.BRANCH_NAME }} == "beta" ]; then rsync -av --omit-dir-times --no-perms --delete --exclude='.git/' --exclude='.github/' ./coriolis/build/* /var/www/beta.coriolis.io/; elif [ ${{ env.BRANCH_NAME }} == "alpha" ]; then rsync -av --omit-dir-times --no-perms --delete --exclude='.git/' --exclude='.github/' ./coriolis/build/* /var/www/alpha.coriolis.io/; else rsync -av --omit-dir-times --no-perms --delete --exclude='.git/' --exclude='.github/' ./coriolis/build/* /var/www/coriolis.io/; fi

35 changes: 24 additions & 11 deletions devServer.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,33 @@
var webpack = require('webpack');
var WebpackDevServer = require("webpack-dev-server");
var config = require('./webpack.config.dev');
const webpack = require('webpack');
const WebpackDevServer = require('webpack-dev-server');
const config = require('./webpack.config.dev');

new WebpackDevServer(webpack(config), {
const devServerOptions = {
hot: true,
headers: { "Access-Control-Allow-Origin": "*" },
headers: {
"Access-Control-Allow-Origin": "*"
},
historyApiFallback: {
rewrites: [
// For some reason connect-history-api-fallback does not allow '.' in the URL for history fallback...
{ from: /\/outfit\//, to: '/index.html' }
]
},
host: '0.0.0.0',
port: 3300
};

const compiler = webpack(config);
const server = new WebpackDevServer(devServerOptions, compiler);

const runServer = async () => {
console.log('Starting development server...');
try {
await server.start();
console.log('Successfully started server on http://localhost:3300');
} catch (err) {
console.log('Error starting server:', err);
}
}).listen(3300, "0.0.0.0", function (err, result) {
if (err) {
console.log(err);
}
};

console.log("Listening at localhost:3300");
});
runServer();
Loading
Loading