/apps

Atlas Academy's FGO data viewer

Primary LanguageTypeScriptMIT LicenseMIT

Atlas Academy DB

Cloudflare Worker Publish

Source code for the Atlas Academy DB at https://apps.atlasacademy.io/db

You can join our Discod to discuss the development. Feel free to make pull request or open an issue but we are usually more responsive on Discord.

Discord server invite

Development workflow

# install lerna
npm i -g lerna

# clone repo
git clone https://github.com/atlasacademy/apps.git

# use dev branch
git checkout dev && git pull

# setup packages with local npm link
lerna bootstrap --force-local

# run typescript watchers
npm run watch

# run dev db
npm run start:db

# or run this command on Windows
npm run start:db-win

# ... make changes

# commit changes
git add -A && git commit -m "stuff

Publish workflow

This is not applicable if you are not part of the npm.js Atlas Academy org. Ping one of the contributors to publish the changes.

# publish changes
lerna publish

# merge to master
git checkout master && git pull && git merge dev